1
0
mirror of https://github.com/catseye/SixtyPical.git synced 2024-07-10 00:28:59 +00:00
SixtyPical/eg/hello-world.60p
Cat's Eye Technologies af7d65ee09 Fix example programs; allow externals to be called.
--HG--
rename : eg/hi.60p => eg/hello-world.60p
2014-04-12 19:13:13 +01:00

14 lines
212 B
Plaintext

reserve byte[13] message: "HELLO, WORLD!"
external chrout 65490
routine main {
ldy #0
repeat bne {
lda message, y
jsr chrout
iny
cpy #13
}
lda #13
jsr chrout
}