Ophis/platform/c64/demo/c64_hello.oph
Michael Martin cf0df92fb1 Wrap up the new file/dir handling.
An .outfile directive lets sources suggest default filenames.

Also, .include, .require, .incbin, and .charmapbin are relative
to their _source file_ as opposed the _directory you called Ophis
from_, like it really should have always been.
2012-06-03 19:50:17 -07:00

15 lines
176 B
Plaintext

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