home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_disks / 300-399 / ff330.lzh / XprKermit / rtag.asm < prev    next >
Assembly Source File  |  1990-03-02  |  610b  |  42 lines

  1. ;;; rtag.asm
  2. ;
  3. ;   DESCRIPTION:
  4. ;   ===========
  5. ;
  6. ;    This is the romtag structure for an Amiga Exec library.
  7. ;    This version is written for Aztec C by Jim Mackraz.
  8. ;
  9. ;;;
  10.  
  11.     include    'exec/types.i'
  12.     include    'exec/resident.i'
  13.     include    'exec/nodes.i'
  14.     include    'exec/libraries.i'
  15.  
  16. XPRVERSION    equ    1
  17. XPRPRI        equ    0
  18.  
  19.     cseg    ; romtag must be in first hunk
  20.  
  21.     public    _XPRname
  22.     public    _XPRid
  23.     public    _XPRInitTab
  24.  
  25.     ds    0
  26.     public    _XPRRomTag
  27. _XPRRomTag:
  28.     dc.w    RTC_MATCHWORD
  29.     dc.l    _XPRRomTag
  30.     dc.l    endtag
  31.     dc.b    RTF_AUTOINIT
  32.     dc.b    XPRVERSION
  33.     dc.b    NT_LIBRARY
  34.     dc.b    XPRPRI
  35.     dc.l    _XPRname
  36.     dc.l    _XPRid
  37.     dc.l    _XPRInitTab
  38. endtag:
  39.  
  40.  
  41.     end
  42.