GitHub_collection_hello-world/a/assembler_6502c64.asm

12 lines
108 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