7 lines
90 B
NASM
7 lines
90 B
NASM
MSG: .ASCIIZ "Hello World"
|
|
START: LDX #0
|
|
LOOP: LDA MSG,X
|
|
JSR $FFD2
|
|
INX
|
|
BNE @LOOP
|
|
RTS
|