GitHub_collection_hello-world/a/Assembler 6502c64.asm
2021-05-08 13:33:04 +12:00

12 lines
107 B
NASM

ldy #0
beq in
loop:
jsr $ffd2
iny
in:
lda hello,y
bne loop
rts
hello: .tx "Hello World"
.by 13,10,0