mirror of
https://github.com/sehugg/8bitworkshop.git
synced 2024-11-21 23:30:58 +00:00
44271fe9b8
vcslib: increased # of lines in kernel
19 lines
274 B
Plaintext
19 lines
274 B
Plaintext
|
|
!src "basicheader.acme"
|
|
|
|
Start:
|
|
jsr $e544 ; clear screen
|
|
ldy #0
|
|
Loop:
|
|
lda Message,y ; load message byte
|
|
beq EOM ; 0 = end of string
|
|
sta $400+41,y ; store to screen
|
|
iny
|
|
bne Loop ; next character
|
|
EOM:
|
|
jmp EOM ; infinite loop
|
|
|
|
Message:
|
|
!scr "hello world!", 0
|
|
|