source: rtems/c/src/lib/libbsp/i960/rxgen960/startup/rom_ibr.c @ 3299388d

4.104.114.84.95
Last change on this file since 3299388d was bc85fd5a, checked in by Joel Sherrill <joel.sherrill@…>, on 07/11/00 at 19:31:04

Reworked score/cpu/i960 so it can be safely compiled multilib. All
routines and structures that require CPU model specific information
are now in libcpu. This required significant rework of the
score/cpu header files and the creation of multiple header files
and subdirectories in libcpu/i960.

  • Property mode set to 100644
File size: 861 bytes
Line 
1/*-------------------------------------*/
2/* rom_ibr.h                           */
3/* Last change :  23. 1.95             */
4/*-------------------------------------*/\
5/*
6 *  $Id$
7 */
8
9#include "rom_ibr.h"
10#include "prcb.h"
11#include "cntrltbl.h"
12#include <bsp.h>
13#include "../include/rxgen960_config.h"
14/*-------------------------------------*/
15extern void romStart(void);
16
17
18struct IBR rom_ibr = {
19 {((REGION_BOOT_CONFIG) & 0xff),            /* Initial Bus Configuration */
20  ((REGION_BOOT_CONFIG) >> 8) & 0xff, 
21  ((REGION_BOOT_CONFIG) >> 16) & 0xff,
22  ((REGION_BOOT_CONFIG) >> 24) & 0xff},   
23  romStart,                         /* Start Point */
24  & rom_prcb,                       /* PRCB */
25  {-2,                               /* CheckSum */
26  0,
27  0,
28  0,
29  0,
30  (unsigned int) rom_ibr_cksum}
31};
32/*-------------*/
33/* End of file */
34/*-------------*/
Note: See TracBrowser for help on using the repository browser.