mirror of
https://github.com/sehugg/8bitworkshop.git
synced 2024-11-15 14:07:16 +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
|