source: rtems/c/src/lib/libbsp/i960/rxgen960/startup/nulsystbl.c @ 1fc35374

4.104.114.84.95
Last change on this file since 1fc35374 was 2ea8df3, checked in by Joel Sherrill <joel.sherrill@…>, on 10/27/99 at 16:27:34

Added CVS Ids and a basic header. More header cleanup needed.

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