home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Compute! Gazette 1994 April
/
1994-04b.d64
/
hello.src
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS
UTF-8
Wrap
Text File
|
1994-01-01
|
252 b
|
15 lines
; hello program - jim butterfield
*=$1c40 ; for c128
; *=$0830 ; for c64
; *=$0430 ; for pet/cbm
ldx #$00
loop lda messg,x
jsr $ffd2
inx
cmp #$0d
bne loop
rts
messg .asc "hello!"
.byte $0d
end