home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / icon / dos / src / h / header.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-02-10  |  785 b   |  23 lines

  1. /*
  2.  * Interpreter code file header - this is written at the start of
  3.  *  an icode file after the start-up program.
  4.  */
  5. struct header {
  6.    word hsize;            /* size of interpreter code */
  7.    word trace;            /* initial value of &trace */
  8.  
  9.    word records;        /* location of record blocks */
  10.    word ftab;            /* location of record/field table */
  11.    word fnames;            /* location of names of fields */
  12.    word globals;        /* location of global variables */
  13.    word gnames;            /* location of names of globals */
  14.    word statics;        /* location of static variables */
  15.    word strcons;        /* location of identifier table */
  16.    word filenms;        /* location of ipc/file name table */
  17.  
  18.    word linenums;        /* location of ipc/line number table */
  19.    word config[16];        /* icode version */
  20.  
  21.  
  22.    };
  23.