home *** CD-ROM | disk | FTP | other *** search
/ The CDPD Public Domain Collection for CDTV 3 / CDPDIII.bin / pd / programming / assembler / thesource / volume1 / source / scrollers / intro.lha / macros.s < prev    next >
Encoding:
Text File  |  1991-11-28  |  174 b   |  19 lines

  1. macros set 1
  2. extern macro
  3.  xref \1
  4.  endm
  5. xlvo macro
  6.  xref _LVO\1
  7.  endm
  8. entry macro
  9.  xdef \1
  10.  endm
  11. sys macro
  12.  jsr \1(a6)
  13.  endm
  14. xcall macro
  15.  xlvo _LVO\1
  16.  jsr _LVO\1(a6)
  17.  endm
  18.  
  19.