apple1/ROM development/TestFromManual.asm
Sergei Panarin 4f19769784 SmartyKit 1 ROM asm source & make file
SmartyKit 1 ROM assembler (asm) source and make file for cc65.

Easy-to-use development tool to write your own software for SmartyKLit 1 (you need just run make in your Terminal) and learn how ROM is organized.
2021-01-21 00:25:02 +03:00

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