home *** CD-ROM | disk | FTP | other *** search
/ Compendium Deluxe 1 / LSD Compendium Deluxe 1.iso / a / programming / assemblers / cas.lha / res.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-07-14  |  267 b   |  13 lines

  1. typedef struct Item *Item;
  2. extern struct Item {
  3.    char Tag; Exp E; byte Map; word Line, File;
  4.    Segment Seg; word Offset;
  5. } *RTab;
  6. extern int RCur;
  7.  
  8. extern long LVal;
  9.  
  10. extern void Resolve(Item IP);
  11. extern void Reloc(byte Code, byte Tag, Exp E);
  12.  
  13. void ResInit(void);