mirror of
https://github.com/catseye/SixtyPical.git
synced 2025-02-18 13:31:08 +00:00
14 lines
212 B
Plaintext
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
|
|
}
|