source: rtems/c/src/lib/libbsp/i960/rxgen960/startup/nulsystbl.c @ 8ac4213

4.104.114.84.95
Last change on this file since 8ac4213 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: 2.5 KB
Line 
1/*-------------------------------------*/
2/* systbl.c                            */
3/* Last change : 21. 3.95              */
4/*-------------------------------------*/
5#include "prcb.h"
6#include "systbl.h"
7/*-------------------------------------*/
8  /* System Procedures Table.
9   * Dummy version that will live in ROM at all times
10   * RP does fetch on it, so must be present here rather than pointing
11   * to ram
12   */
13SystemTbl nulsystemTbl = {
14  0, 0, 0,                              /* Reserved */
15  svrStackPtr,                          /* Supervisor Stack Pointer Base */
16  0, 0, 0, 0, 0, 0, 0, 0,               /* Preserved */
17  0, 0, 0, 0, 0, 0, 0, 0,                       /* 0 - 7 */
18  0, 0, 0, 0, 0, 0, 0, 0,                       /* 8 - 15 */
19  0, 0,                                         /* 16 - 17 */
20  0,                                            /* 18 */
21  0,                                            /* 19 */
22  0,                                            /* 20 */
23  0,                                            /* 21 */
24  0, 0,                                         /* 22 - 23 */
25  0,                                            /* 24 */ 
26  0,                                            /* 25 */
27  0,                                            /* 26 */
28  0,                                            /* 27 */
29  0,                                            /* 28 */
30  0,                                            /* 29 */
31  0,                                            /* 30 */
32  0,                                            /* 31 */
33  0, 0, 0, 0, 0, 0, 0, 0,                       /* 32 - 39 */
34  0,                                            /* 40 */
35  0,                                            /* 41 */ 
36  0,                                            /* 42 */ 
37  0,                                            /* 43 */
38  0,                                            /* 44 */
39  0,                                            /* 45 */
40  0,                                            /* 46 */
41  0,                                            /* 47 */
42  0, 0, 0, 0, 0, 0, 0, 0,                       /* 48 - 55 */
43  0,                                            /* 56 */
44  0,                                            /* 57 */
45  0,                                            /* 58 */
46  0, 0, 0, 0, 0,                                /* 59 - 63 */
47  0,                                            /* 64 */
48  0,                                            /* 65 */
49  0, 0, 0, 0, 0, 0,                             /* 66 - 71 */
50  0,                                            /* 72 */
51  0,                                            /* 73 */
52  0,                                            /* 74 */
53  0,                                            /* 75 */
54  0,                                            /* 76 */
55  0,                                            /* 77 */
56  0, 0,                                         /* 78 - 79 */
57  0,                                            /* 80 */
58  0,                                            /* 81 */
59  0, 0, 0, 0, 0, 0,                             /* 82 - 87 */
60  0,                                            /* 88 */
61  0, 0, 0, 0, 0, 0, 0,                          /* 89 - 95 */
62  0,                                            /* 96 */
63  0,                                            /* 97 */
64  0, 0, 0, 0, 0, 0,                             /* 98 - 103 */
65  0,                                            /* 104 */
66  0,                                            /* 105 */
67  0,                                            /* 106 */
68  0,                                            /* 107 */
69  0,                                            /* 108 */
70  0,                                            /* 109 */
71  0, 0,                                         /* 110 - 111 */
72  0,                                            /* 112 */
73  0,                                            /* 113 */
74  0,                                            /* 114 */
75};
76/*-------------*/
77/* End of file */
78/*-------------*/
79
Note: See TracBrowser for help on using the repository browser.