mirror of
https://github.com/sehugg/8bitworkshop.git
synced 2024-11-16 05:05:11 +00:00
18 lines
270 B
Plaintext
18 lines
270 B
Plaintext
|
|
||
|
include "cartheader.dasm"
|
||
|
|
||
|
Start
|
||
|
ldy #0
|
||
|
.Loop
|
||
|
lda Message,y
|
||
|
beq .LoopExit
|
||
|
jsr $FFD2 ; CHROUT
|
||
|
iny
|
||
|
bne .Loop
|
||
|
.LoopExit
|
||
|
jmp . ; infinite loop
|
||
|
Message
|
||
|
; PETSCII - http://sta.c64.org/cbm64pet.html
|
||
|
byte "HELLO WORLD!"
|
||
|
byte 13,0
|