home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 437a.lha / Mandel_v1.0 / source / macros.i < prev    next >
Encoding:
Text File  |  1990-11-09  |  349 b   |  28 lines

  1. * \0 should be the suffix. Hope this works.
  2.  
  3. bhs   macro
  4.       bcc.\0   \1
  5.       endm
  6.  
  7. blo   macro
  8.       bcs.\0   \1
  9.       endm
  10.  
  11. push  macro
  12.       movem.l   \1,-(sp)
  13.       endm
  14.  
  15. pull  macro
  16.       movem.l   (sp)+,\1
  17.       endm
  18.  
  19. Base  macro
  20.       move.l   _\1Base,a6
  21.       endm
  22.  
  23. Call  macro
  24.       xref     _LVO\1
  25.       jsr      _LVO\1(a6)
  26.       endm
  27.  
  28.