1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-01 13:41:34 +00:00
cc65/samples/cbm/hello.s
2024-02-06 14:25:26 -07:00

19 lines
186 B
ArmAsm
Executable File

.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!@"