1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-08 15:29:37 +00:00
cc65/samples/cbm/hello.s
2024-02-06 14:36:39 -07:00

19 lines
186 B
ArmAsm

.macpack cbm
start:
lda #14
jsr $ffd2
ldy #0
loop:
lda message,y
beq done
sta $0400,y
iny
bne loop
done:
rts
message:
scrcode "Hello, World!@"