summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/i960/rxgen960/startup/rom_ibr.c
blob: 8366f4676f669f83f98aa04937010da262aec335 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/*-------------------------------------*/
/* rom_ibr.h                           */
/* Last change :  23. 1.95             */
/*-------------------------------------*/\
#include "rom_ibr.h"
#include "prcb.h"
#include "cntrltbl.h"
#include <i960RP.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 */
/*-------------*/