home *** CD-ROM | disk | FTP | other *** search
/ The Best of Mecomp Multimedia 1 / Mecomp-CD.iso / amiga / tools / system / shutdown / romtag.asm < prev    next >
Assembly Source File  |  1992-04-01  |  475b  |  30 lines

  1.         INCLUDE "exec/types.i"
  2.         INCLUDE    "exec/nodes.i"
  3.         INCLUDE "exec/resident.i"
  4.  
  5.         INCLUDE    "shutdown.library.i"
  6.  
  7.         XREF    _LibInitTab
  8.         XREF    _LibName
  9.         XREF    _LibID
  10.  
  11.         SECTION    text,CODE
  12.  
  13.         CNOP    4
  14.  
  15.         MOVEQ    #0,D0        ; word
  16.         RTS            ; word
  17.  
  18. InitDesc:    DC.W    RTC_MATCHWORD
  19.         DC.L    InitDesc
  20.         DC.L    EndCode
  21.         DC.B    RTF_AUTOINIT    ; yet auto-init
  22.         DC.B    VERSION        ; version
  23.         DC.B    NT_LIBRARY
  24.         DC.B    0        ; priority
  25.         DC.L    _LibName
  26.         DC.L    _LibID
  27.         DC.L    _LibInitTab    ; ptr to init table
  28. EndCode:
  29.         END
  30.