URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [rtems-20020807/] [c/] [src/] [lib/] [libbsp/] [i960/] [rxgen960/] [startup/] [rom_ibr.c] - Rev 1778
Go to most recent revision | Compare with Previous | Blame | View Log
/*-------------------------------------*/ /* rom_ibr.h */ /* Last change : 23. 1.95 */ /*-------------------------------------*/\ /* * rom_ibr.c,v 1.3 2000/07/11 19:31:03 joel Exp */ #include "rom_ibr.h" #include "prcb.h" #include "cntrltbl.h" #include <bsp.h> #include "../include/rxgen960_config.h" /*-------------------------------------*/ extern void romStart(void); struct IBR rom_ibr = { {((REGION_BOOT_CONFIG) & 0xff), /* Initial Bus Configuration */ ((REGION_BOOT_CONFIG) >> 8) & 0xff, ((REGION_BOOT_CONFIG) >> 16) & 0xff, ((REGION_BOOT_CONFIG) >> 24) & 0xff}, romStart, /* Start Point */ & rom_prcb, /* PRCB */ {-2, /* CheckSum */ 0, 0, 0, 0, (unsigned int) rom_ibr_cksum} }; /*-------------*/ /* End of file */ /*-------------*/
Go to most recent revision | Compare with Previous | Blame | View Log