apple1/ROM development/TestFromManual.asm

8 lines
148 B
NASM
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

;Test from Apple-1 Operation Manual printing all ASCII symbols in a loop
LDA #$00
TEST_LOOP: TAX
JSR ECHO
INX
TXA
JMP TEST_LOOP