source: rtems/c/src/lib/libbsp/i960/rxgen960/startup/intrtbl.c @ f08a5596

4.104.114.84.95
Last change on this file since f08a5596 was 702c5f5, checked in by Joel Sherrill <joel.sherrill@…>, on 10/27/99 at 15:29:18

The rxgen960 BSP and i960 RPM support was submitted by Mark Bronson
<mark@…> of RAMIX.

  • Property mode set to 100644
File size: 1.9 KB
Line 
1/*-------------------------------------*/
2/* intrtbl.c                           */
3/* Last change : 12.10.94              */
4/*-------------------------------------*/
5#include "ihandler.h"
6#include "intrtbl.h"
7/*-------------------------------------*/
8
9
10  /* Interrupt Table. Dedicated Interrupts are cached.
11   * So NMI handler has to be defined here.
12   */
13InterruptTbl interruptTbl = {
14  0,                                    /* Pending Priorities */
15  0, 0, 0, 0, 0, 0, 0, 0,               /* Pending Interrupts */
16  0, 0, 0, 0, 0, 0, 0, 0,               /*   8 -  15 */
17  0, 0, 0, 0, 0, 0, 0, 0,               /*  16 -  23 */
18  0, 0, 0, 0, 0, 0, 0, 0,               /*  24 -  31 */
19  0, 0, 0, 0, 0, 0, 0, 0,               /*  32 -  39 */
20  0, 0, 0, 0, 0, 0, 0, 0,               /*  40 -  47 */
21  0, 0, 0, 0, 0, 0, 0, 0,               /*  48 -  55 */
22  0, 0, 0, 0, 0, 0, 0, 0,               /*  56 -  63 */
23  0, 0, 0, 0, 0, 0, 0, 0,               /*  64 -  71 */
24  0, 0, 0, 0, 0, 0, 0, 0,               /*  72 -  79 */
25  0, 0, 0, 0, 0, 0, 0, 0,               /*  80 -  87 */
26  0, 0, 0, 0, 0, 0, 0, 0,               /*  88 -  95 */
27  0, 0, 0, 0, 0, 0, 0, 0,               /*  96 - 103 */
28  0, 0, 0, 0, 0, 0, 0, 0,               /* 104 - 111 */
29  0, 0, 0, 0, 0, 0, 0, 0,               /* 112 - 119 */
30  0, 0, 0, 0, 0, 0, 0, 0,               /* 120 - 127 */
31  0, 0, 0, 0, 0, 0, 0, 0,               /* 128 - 135 */
32  0, 0, 0, 0, 0, 0, 0, 0,               /* 136 - 143 */
33  0, 0, 0, 0, 0, 0, 0, 0,               /* 144 - 151 */
34  0, 0, 0, 0, 0, 0, 0, 0,               /* 152 - 159 */
35  0, 0, 0, 0, 0, 0, 0, 0,               /* 160 - 167 */
36  0, 0, 0, 0, 0, 0, 0, 0,               /* 168 - 175 */
37  0, 0, 0, 0, 0, 0, 0, 0,               /* 176 - 183 */
38  0, 0, 0, 0, 0, 0, 0, 0,               /* 184 - 191 */
39  0, 0, 0, 0, 0, 0, 0, 0,               /* 192 - 199 */
40  0, 0, 0, 0, 0, 0, 0, 0,               /* 200 - 207 */
41  0, 0, 0, 0, 0, 0, 0, 0,               /* 208 - 215 */
42  0, 0, 0, 0, 0, 0, 0, 0,               /* 216 - 223 */
43  0, 0, 0, 0, 0, 0, 0, 0,               /* 224 - 231 */
44  0, 0, 0, 0, 0, 0, 0, 0,               /* 232 - 239 */
45  0, 0, 0, 0, 0, 0, 0, 0,               /* 240 - 247 */
46  nmiHandler + NORMAL_IH,               /* 248 : NMI handler */
47     0, 0, 0, 0, 0, 0, 0,               /* 249 - 255 */
48
49};
50/*-------------*/
51/* End of file */
52/*-------------*/
53
Note: See TracBrowser for help on using the repository browser.