Ophis/platform/c64/demo/c64_hello.oph
Michael Martin feba267ee7 Basic platform headers.
* C64, NES, and Atari 2600 ("Stella") useful constants headers.
 * crt0.s equivalent for C64.
 * Hello World for the C64.
2012-06-02 02:45:05 -07:00

13 lines
154 B
Plaintext

.include "../c64_0.oph"
.include "../c64kernal.oph"
ldy #$00
* lda text, y
beq +
jsr chrout
iny
bne -
* rts
text: .byte "HELLO, C64 WORLD!", 13, 0