source: rtems/c/src/lib/libbsp/i960/rxgen960/startup/nulsystbl.c @ 3299388d

4.104.114.84.95
Last change on this file since 3299388d was d16e950, checked in by Joel Sherrill <joel.sherrill@…>, on 04/18/02 at 13:07:55

2002-04-20 Ralf Corsepius <corsepiu@…>

  • startup/nulsystbl.c: Fix braces.
  • startup/Makefile.am: Remove types.h.
  • startup/types.h: Remove.
  • 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  {
22  0, 0, 0, 0, 0, 0, 0, 0,                       /* 0 - 7 */
23  0, 0, 0, 0, 0, 0, 0, 0,                       /* 8 - 15 */
24  0, 0,                                         /* 16 - 17 */
25  0,                                            /* 18 */
26  0,                                            /* 19 */
27  0,                                            /* 20 */
28  0,                                            /* 21 */
29  0, 0,                                         /* 22 - 23 */
30  0,                                            /* 24 */ 
31  0,                                            /* 25 */
32  0,                                            /* 26 */
33  0,                                            /* 27 */
34  0,                                            /* 28 */
35  0,                                            /* 29 */
36  0,                                            /* 30 */
37  0,                                            /* 31 */
38  0, 0, 0, 0, 0, 0, 0, 0,                       /* 32 - 39 */
39  0,                                            /* 40 */
40  0,                                            /* 41 */ 
41  0,                                            /* 42 */ 
42  0,                                            /* 43 */
43  0,                                            /* 44 */
44  0,                                            /* 45 */
45  0,                                            /* 46 */
46  0,                                            /* 47 */
47  0, 0, 0, 0, 0, 0, 0, 0,                       /* 48 - 55 */
48  0,                                            /* 56 */
49  0,                                            /* 57 */
50  0,                                            /* 58 */
51  0, 0, 0, 0, 0,                                /* 59 - 63 */
52  0,                                            /* 64 */
53  0,                                            /* 65 */
54  0, 0, 0, 0, 0, 0,                             /* 66 - 71 */
55  0,                                            /* 72 */
56  0,                                            /* 73 */
57  0,                                            /* 74 */
58  0,                                            /* 75 */
59  0,                                            /* 76 */
60  0,                                            /* 77 */
61  0, 0,                                         /* 78 - 79 */
62  0,                                            /* 80 */
63  0,                                            /* 81 */
64  0, 0, 0, 0, 0, 0,                             /* 82 - 87 */
65  0,                                            /* 88 */
66  0, 0, 0, 0, 0, 0, 0,                          /* 89 - 95 */
67  0,                                            /* 96 */
68  0,                                            /* 97 */
69  0, 0, 0, 0, 0, 0,                             /* 98 - 103 */
70  0,                                            /* 104 */
71  0,                                            /* 105 */
72  0,                                            /* 106 */
73  0,                                            /* 107 */
74  0,                                            /* 108 */
75  0,                                            /* 109 */
76  0, 0,                                         /* 110 - 111 */
77  0,                                            /* 112 */
78  0,                                            /* 113 */
79  0,                                            /* 114 */
80  }
81};
82/*-------------*/
83/* End of file */
84/*-------------*/
85
Note: See TracBrowser for help on using the repository browser.