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

4.104.114.84.95
Last change on this file since 3239698 was 3239698, checked in by Ralf Corsepius <ralf.corsepius@…>, on 04/15/04 at 13:26:21

Remove stray white spaces.

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