home *** CD-ROM | disk | FTP | other *** search
/ Compute! Gazette 1994 April / 1994-04b.d64 / hello.src < prev    next >
Text File  |  2022-09-20  |  252b  |  15 lines

  1. ;  hello program - jim butterfield
  2.    *=$1c40     ; for c128
  3. ;  *=$0830     ; for c64
  4. ;  *=$0430     ; for pet/cbm
  5.      ldx #$00
  6. loop lda messg,x
  7.      jsr $ffd2
  8.      inx
  9.      cmp #$0d
  10.      bne loop
  11.      rts
  12. messg .asc "hello!"
  13.       .byte $0d
  14.      end
  15.