home *** CD-ROM | disk | FTP | other *** search
/ World of A1200 / World_Of_A1200.iso / programs / develop / as65 / connect_c64 / inc / macros.h < prev   
Text File  |  1995-02-27  |  213b  |  15 lines

  1.                         ;*****************
  2.                         ;Macrodefinitionen
  3.                         ;*****************
  4.  
  5.  
  6. print                    .macro
  7.                         ldx #<txt
  8.                         ldy #>txt
  9.                         lda #!1
  10.                         jsr print_txt
  11.                         bcc end
  12. txt                    .null "!2"
  13. end
  14.                         .endmacro
  15.