home *** CD-ROM | disk | FTP | other *** search
/ CP/M / CPM_CDROM.iso / mbug / mbug103.arc / MIT.H < prev    next >
Text File  |  1979-12-31  |  512b  |  15 lines

  1. /*
  2. ** machine instruction table
  3. */
  4. int
  5.   mitable = 3*INTSZ*MICOUNT+MIBUFSZ,    /* mit size signature */
  6.   mitndx[MICOUNT],        /* mit indices (hash -> which) */
  7.   mitnxt[MICOUNT],        /* mit synonym chain */
  8.   mitptr[MICOUNT];        /* mnemonic syntax ptrs */
  9. char
  10.   mitbuf[MIBUFSZ];        /* instruction syntax buffer */
  11.  
  12. extern int            /* reside in mit.c */
  13.   opadj,            /* operation code adjustment */
  14.   hashval;            /* global hash value for speed */
  15.