mirror of
https://github.com/michaelcmartin/Ophis.git
synced 2025-01-19 18:29:48 +00:00
feba267ee7
* C64, NES, and Atari 2600 ("Stella") useful constants headers. * crt0.s equivalent for C64. * Hello World for the C64.
13 lines
154 B
Plaintext
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
|