mirror of
https://github.com/michaelcmartin/Ophis.git
synced 2024-11-08 07:04:39 +00:00
24 lines
310 B
Plaintext
24 lines
310 B
Plaintext
.word $0801
|
|
.org $0801
|
|
.outfile "hello.prg"
|
|
|
|
.scope
|
|
.word _next, 10 ; Next line and current line number
|
|
.byte $9e," 2064",0 ; SYS 2064
|
|
_next: .word 0 ; End of program
|
|
.scend
|
|
|
|
.advance 2064
|
|
|
|
.alias chrout $ffd2
|
|
|
|
ldx #0
|
|
* lda hello, x
|
|
beq +
|
|
jsr chrout
|
|
inx
|
|
bne -
|
|
* rts
|
|
|
|
hello: .byte "HELLO, WORLD!", 0
|