URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [rtems-20020807/] [c/] [src/] [lib/] [libbsp/] [i960/] [rxgen960/] [startup/] [rom_ibr.h] - Rev 1778
Go to most recent revision | Compare with Previous | Blame | View Log
/*-------------------------------------*/ /* rom_ibr.h */ /* Last change : 23. 1.95 */ /*-------------------------------------*/ /* * rom_ibr.h,v 1.2 1999/10/27 16:27:34 joel Exp */ #ifndef _ROM_IBR_H_ #define _ROM_IBR_H_ #include "flttbl.h" #include "cntrltbl.h" #include "intrtbl.h" #include "systbl.h" /* Initial Boot Record. */ struct IBR { unsigned int busConfig[4]; /* Initial Bus Configuration */ void (* start)(void); /* Start Point */ struct PRCB * prcb; /* PRCB */ unsigned int chckSum[6]; /* CheckSum */ }; /* Check sum values (defined in *.ld). */ extern unsigned int rom_ibr_cksum[]; #endif /*-------------*/ /* End of file */ /*-------------*/
Go to most recent revision | Compare with Previous | Blame | View Log