home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Tools / Languages / Harvest C 1.3 / Source Code / lookup.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-01-02  |  963 b   |  15 lines  |  [TEXT/ALFA]

  1. struct nlist {            /* basic symbol table entry */
  2.     char                           *sym_name;
  3.     int                             sym_def;
  4.     char                            sym_type;    /* type of symbol entry */
  5.     struct nlist                   *sym_next;    /* next entry in chain */
  6. };
  7.  
  8. struct nlist                   *lookup();
  9.  
  10. /* sym_types */
  11. #define SYM     0        /* a user defined symbol */
  12. #define SREG    1        /* status reg (SR or CCR) */
  13. #define DREG    2        /* Dn */
  14. #define AREG    3        /* An */
  15. #define CREG