GitHub_collection_hello-world/a/Assembler 6502c64.asm

12 lines
107 B
NASM
Raw Normal View History

2015-08-26 18:34:38 -07:00
ldy #0
beq in
loop:
jsr $ffd2
iny
in:
lda hello,y
bne loop
rts
2021-05-07 20:33:04 -05:00
hello: .tx "Hello World"
2015-08-26 18:34:38 -07:00
.by 13,10,0