* \0 should be the suffix. Hope this works.

bhs   macro
      bcc.\0   \1
      endm

blo   macro
      bcs.\0   \1
      endm

push  macro
      movem.l   \1,-(sp)
      endm

pull  macro
      movem.l   (sp)+,\1
      endm

Base  macro
      move.l   _\1Base,a6
      endm

Call  macro
      xref     _LVO\1
      jsr      _LVO\1(a6)
      endm

