source: rtems/c/src/lib/libbsp/i960/rxgen960/startup/systbl.c @ aec4888

4.104.114.84.95
Last change on this file since aec4888 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: 3.1 KB
Line 
1/*-------------------------------------*/
2/* systbl.c                            */
3/* Last change : 21. 3.95              */
4/*-------------------------------------*/
5/*
6 *  $Id$
7 */
8
9#include "prcb.h"
10/*#include "uart_access.h" */
11#include "fault.h"
12#include "faultret.h"
13#include "memchnl.h"
14#include "main.h"
15/*#include "string_impl.h"*/
16#include "stdio.h"
17/* #include "stdio_impl.h" */
18#include "systbl.h"
19#include "time.h"
20/*-------------------------------------*/
21
22struct PRCB *sys_get_prcb()
23{
24  register struct PRCB *prcb = &ram_prcb;
25
26  return(prcb);
27  /*asm volatile("lda _ram_prcb, g0" : : ); */
28}
29
30  /* System Procedures Table.
31   */
32SystemTbl systemTbl = {
33 {0, 0, 0},                             /* Reserved */
34  svrStackPtr,                          /* Supervisor Stack Pointer Base */
35 {0, 0, 0, 0, 0, 0, 0, 0},              /* Preserved */
36 {0, 0, 0, 0, 0,
37  SP(sys_get_prcb + SUPERVISOR_SP),
38  0, 0,                         /* 6 - 7 */
39  0, 0, 0, 0, 0, 0, 0, 0,                               /* 8 - 15 */
40  0, 0,                                                 /* 16 - 17 */
41  0,                     /* 18 */
42  0,                    /* 19 */
43  0,                    /* 20 */
44  0,                      /* 21 */
45  0, 0,                                                 /* 22 - 23 */
46  0,         /* 24 */ 
47  0,                       /* 25 */
48  0,                        /* 26 */
49  0,                        /* 27 */
50  0,                        /* 28 */
51  0,                        /* 29 */
52  0,                      /* 30 */
53  0,                       /* 31 */
54  0, 0, 0, 0, 0, 0, 0, 0,                               /* 32 - 39 */
55  0,                      /* 40 */
56  0,                      /* 41 */ 
57  0,                      /* 42 */ 
58  0,                      /* 43 */
59  0,                      /* 44 */
60  0,                     /* 45 */
61  0,                     /* 46 */
62  0,                                                    /* 47 */
63  0, 0, 0, 0, 0, 0, 0, 0,                               /* 48 - 55 */
64  0,                    /* 56 */
65  0,                          /* 57 */
66  0,                         /* 58 */
67  0, 0, 0, 0, 0,                                        /* 59 - 63 */
68  0,               /* 64 */
69  0,              /* 65 */
70  0, 0, 0, 0, 0, 0,                                     /* 66 - 71 */
71  0,                                                    /* 72 */
72  0,                                                    /* 73 */
73  0,                                                    /* 74 */
74  0,                                                    /* 75 */
75  0,                                                    /* 76 */
76  0,                                                    /* 77 */
77  0, 0,                                                 /* 78 - 79 */
78  0,                                                    /* 80 */
79  0,                                                    /* 81 */
80  0, 0, 0, 0, 0, 0,                                     /* 82 - 87 */
81  0,   /* 88 */
82  0, 0, 0, 0, 0, 0, 0,                                  /* 89 - 95 */
83  0,                  /* 96 */
84  0,                     /* 97 */
85  0, 0, 0, 0, 0, 0,                                     /* 98 - 103 */
86  0,                 /* 104 */
87  0,                 /* 105 */
88  0,                      /* 106 */
89  0,                      /* 107 */
90  0,                      /* 108 */
91  0,                    /* 109 */
92  0, 0,                                                 /* 110 - 111 */
93  0,                     /* 112 */
94  0,                  /* 113 */
95  0}                                                    /* 114 */
96};
97
98/*-------------*/
99/* End of file */
100/*-------------*/
101
Note: See TracBrowser for help on using the repository browser.