Create assembler_6502c64.asm

This commit is contained in:
David
2015-08-26 18:34:38 -07:00
parent d8db63ee7f
commit ecb76b57c0

11
a/assembler_6502c64.asm Normal file
View File

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