home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 278.lha / RegexLibrary_v1.0 / rtag.asm < prev    next >
Assembly Source File  |  1989-08-06  |  1KB  |  40 lines

  1. ;  Rom tag code for the GNU regular expression library.
  2. ;  Edwin Hoogerbeets 18/07/89
  3. ;
  4. ;  This file may be copied and distributed under the GNU Public
  5. ;  Licence. See the comment at the top of regex.c for details.
  6. ;
  7. ;  Adapted from Elib by Jim Mackraz, mklib by Edwin Hoogerbeets, and the
  8. ;  GNU regular expression package by the Free Software Foundation.
  9.  
  10.          include 'exec/types.i'
  11.          include 'exec/resident.i'
  12.          include 'exec/nodes.i'
  13.          include 'exec/libraries.i'
  14.  
  15. MYVERSION       equ     1
  16. MYPRI           equ     0
  17.  
  18.          cseg    ; romtag must be in first hunk
  19.  
  20.          public  _myname
  21.          public  _myid
  22.          public  _myInitTab
  23.  
  24.          ds      0
  25.          public  _myRomTag
  26. _myRomTag:
  27.          dc.w    RTC_MATCHWORD
  28.          dc.l    _myRomTag
  29.          dc.l    endtag
  30.          dc.b    RTF_AUTOINIT
  31.          dc.b    MYVERSION
  32.          dc.b    NT_LIBRARY
  33.          dc.b    MYPRI
  34.          dc.l    _myname
  35.          dc.l    _myid
  36.          dc.l    _myInitTab
  37. endtag:
  38.  
  39.          end
  40.