<< Lines .001/.009 are reserved for systems integration >>              00000001
Comment                                                                 00001000
                                                                        00002000
  The following is a template for the header entry of any               00003000
  system table, core resident or not. The only exceptions are           00004000
  the DST table and the CST table which will maintain their             00005000
  original header formats but are limited to only four words.           00006000
  All future system tables should conform to this template              00007000
  w/o regard to their respective entry size.                            00008000
  Currently only the SLL, Special Request and PCB tables                00009000
  conform to this format. It is expected that eventually all            00010000
  system tables present and future will have this format.               00011000
;                                                                       00012000
                                                                        00013000
                                                                        00014000
                                                                        00015000
                                                                        00016000
EQUATE                                                                  00017000
   SPECREQDST                 = 38,                                     00018000
   SLLDST                     = 23,                                     00019000
   PCBDST                     = 3,                                      00020000
   DSTDST                     = 2,                                      00021000
   CSTDST                     = 1,                                      00022000
   CSTXDST                    = 4;                                      00023000
                                                                        00024000
LOGICAL ARRAY                                                           00025000
   SYSTABCONFCOUNT(*)         = DB + 0,                                 00026000
   SYSTABSIZE(*)              = DB + 1,                                 00027000
   SYSTABFREECOUNT(*)         = DB + 2,                                 00028000
   SYSTABFREEHEAD(*)          = DB + 3,                                 00029000
   SYSTABFREETAIL(*)          = DB + 4,                                 00030000
   SYSTABMOSTOUT(*)           = DB + 5,                                 00031000
   SYSTABPRIMARYCONF(*)       = DB + 6,                                 00032000
   SYSTABIMPHEAD(*)           = DB + 7,                                 00033000
   SYSTABIMPTAIL(*)           = DB + 8,                                 00034000
   SYSTABIMPCUR(*)            = DB + 9,                                 00035000
   SYSTABIMPMAX(*)            = DB + 10,                                00036000
   SYSTABFREEWORD(*)          = DB + 0,                                 00037000
   SYSTABPREV(*)              = DB + 2,                                 00038000
   SYSTABNEXT(*)              = DB + 1,                                 00039000
   SYSTABIMPCUMULATIVE(*)     = DB + 11;                                00040000
                                                                        00041000
DEFINE                                                                  00042000
   SYSTABENTRYCOUNT           = SYSTABCONFCOUNT(X)#,                    00043000
   SYSTABENTRYSIZE            = SYSTABSIZE(X)#,                         00044000
   SYSTABFREECNT              = SYSTABFREECOUNT(X)#,                    00045000
   SYSTABFIRSTFREEINX         = SYSTABFREEHEAD(X)#,                     00046000
   SYSTABLASTFREEINX          = SYSTABFREETAIL(X)#,                     00047000
   SYSTABMOSTUSED             = SYSTABMOSTOUT(X)#,                      00048000
   SYSTABPRIMARYNUM           = SYSTABPRIMARYCONF(X)#,                  00049000
   SYSTABIMPHEADINX           = SYSTABIMPHEAD(X)#,                      00050000
   SYSTABIMPTAILINX           = SYSTABIMPTAIL(X)#,                      00051000
   SYSTABIMPCURRENTNUM        = SYSTABIMPCUR(X)#,                       00052000
   SYSTABIMPMAXNUM            = SYSTABIMPMAX(X)#,                       00053000
   SYSTABFREEINDICATOR        = SYSTABFREEWORD(X)#,                     00054000
   SYSTABENTRYPREVINX         = SYSTABPREV(X)#,                         00055000
   SYSTABENTRYNEXTINX         = SYSTABNEXT(X)#,                         00056000
   SYSTABIMPCUM               = SYSTABIMPCUMULATIVE(X)#;                00057000
                                                                        00058000
