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

4.104.114.84.95
Last change on this file since f05b2ac was f05b2ac, checked in by Ralf Corsepius <ralf.corsepius@…>, on 04/21/04 at 16:01:48

Remove duplicate white lines.

  • Property mode set to 100644
File size: 853 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
17struct IBR rom_ibr = {
18 {((REGION_BOOT_CONFIG) & 0xff),            /* Initial Bus Configuration */
19  ((REGION_BOOT_CONFIG) >> 8) & 0xff,
20  ((REGION_BOOT_CONFIG) >> 16) & 0xff,
21  ((REGION_BOOT_CONFIG) >> 24) & 0xff},
22  romStart,                         /* Start Point */
23  & rom_prcb,                       /* PRCB */
24  {-2,                               /* CheckSum */
25  0,
26  0,
27  0,
28  0,
29  (unsigned int) rom_ibr_cksum}
30};
31/*-------------*/
32/* End of file */
33/*-------------*/
Note: See TracBrowser for help on using the repository browser.