summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/i960/rxgen960/startup/nulsystbl.c
blob: eaff3b24f0f1f90b57214dd0c3fae4226b786537 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
/*-------------------------------------*/
/* systbl.c                            */
/* Last change : 21. 3.95              */
/*-------------------------------------*/
/*
 *  $Id$
 */

#include "prcb.h"
#include "systbl.h"
/*-------------------------------------*/
  /* System Procedures Table. 
   * Dummy version that will live in ROM at all times
   * RP does fetch on it, so must be present here rather than pointing 
   * to ram
   */
SystemTbl nulsystemTbl = {
  { 0, 0, 0 },				/* Reserved */
  svrStackPtr,				/* Supervisor Stack Pointer Base */
  { 0, 0, 0, 0, 0, 0, 0, 0 },		/* Preserved */
  {
  0, 0, 0, 0, 0, 0, 0, 0,		        /* 0 - 7 */
  0, 0, 0, 0, 0, 0, 0, 0,                       /* 8 - 15 */
  0, 0,                                         /* 16 - 17 */
  0,				                /* 18 */
  0,				                /* 19 */
  0,				                /* 20 */
  0,				                /* 21 */
  0, 0,                                         /* 22 - 23 */
  0,				         	/* 24 */  
  0,				                /* 25 */
  0,				                /* 26 */
  0,				                /* 27 */
  0,				                /* 28 */
  0,				                /* 29 */
  0,				                /* 30 */
  0,				                /* 31 */
  0, 0, 0, 0, 0, 0, 0, 0,                       /* 32 - 39 */
  0,				                /* 40 */
  0,				                /* 41 */  
  0,				                /* 42 */  
  0,				                /* 43 */
  0,				                /* 44 */
  0,				                /* 45 */
  0,				                /* 46 */
  0,                                            /* 47 */
  0, 0, 0, 0, 0, 0, 0, 0,                       /* 48 - 55 */
  0,				                /* 56 */
  0,				                /* 57 */
  0,				                /* 58 */
  0, 0, 0, 0, 0,                                /* 59 - 63 */
  0, 				              	/* 64 */
  0,				                /* 65 */ 
  0, 0, 0, 0, 0, 0,				/* 66 - 71 */ 
  0,				                /* 72 */ 
  0,						/* 73 */ 
  0,						/* 74 */
  0,						/* 75 */
  0,						/* 76 */
  0,						/* 77 */
  0, 0,						/* 78 - 79 */
  0,						/* 80 */
  0,						/* 81 */ 
  0, 0, 0, 0, 0, 0,				/* 82 - 87 */
  0,						/* 88 */ 
  0, 0, 0, 0, 0, 0, 0,				/* 89 - 95 */
  0,						/* 96 */ 
  0,						/* 97 */ 
  0, 0, 0, 0, 0, 0,				/* 98 - 103 */
  0,						/* 104 */
  0,						/* 105 */
  0,						/* 106 */
  0,						/* 107 */
  0,						/* 108 */
  0,						/* 109 */
  0, 0,						/* 110 - 111 */
  0,						/* 112 */
  0,						/* 113 */
  0,						/* 114 */
  }
};
/*-------------*/
/* End of file */
/*-------------*/