URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [rtos/] [rtems/] [c/] [src/] [lib/] [libbsp/] [i960/] [rxgen960/] [startup/] [rom_ibr.h] - Rev 30
Go to most recent revision | Compare with Previous | Blame | View Log
/*-------------------------------------*/ /* rom_ibr.h */ /* Last change : 23. 1.95 */ /*-------------------------------------*/ /* * $Id: rom_ibr.h,v 1.2 2001-09-27 11:59:59 chris 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