home *** CD-ROM | disk | FTP | other *** search
/ Compute! Gazette 1994 April / 1994-04b.d64 / hello.source (.txt) < prev    next >
Commodore BASIC  |  2022-09-20  |  294b  |  15 lines

  1. 100 ;  hello program - jim butterfield
  2. 110    *=$1c40     ; for c128
  3. 120 ;  *=$0830     ; for c64
  4. 130 ;  *=$0430     ; for pet/cbm
  5. 140      ldx #$00
  6. 150 loop lda messg,x
  7. 160     jsr $ffd2
  8. 170     inx
  9. 180     cmp #$0d
  10. 190     bne loop
  11. 200     rts
  12. 210 messg .asc "hello!"
  13. 220     .byte $0d
  14. 230     end
  15.