blob: 6c9e3f4ce6bbb2e659f698558bff071f32602c1b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/*
* Interpreter code file header - this is written at the start of
* an icode file after the start-up program.
*/
struct header {
word hsize; /* size of interpreter code */
word trace; /* initial value of &trace */
word Records;
word Ftab; /* location of record/field table */
word Fnames; /* location of names of fields */
word Globals; /* location of global variables */
word Gnames; /* location of names of globals */
word Statics; /* location of static variables */
word Strcons; /* location of identifier table */
word Filenms; /* location of ipc/file name table */
word linenums; /* location of ipc/line number table */
word config[16]; /* icode version */
};
|