keep all assembly examples under a/assembly_*.asm

This commit is contained in:
Shark
2016-09-21 13:02:44 +02:00
parent 3bab02464b
commit 259d83e19b
6 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
.NOLIST
#define EQU .equ
#define equ .equ
#define END .end
#define end .end
#include "ti83plus.inc"
.LIST
.org 9D93h
.db $BB,$6D
ld a,0
ld (CURCOL),a
ld (CURROW),a
ld hl,text
B_CALL(_PutS)
B_CALL(_NewLine)
ret
text:
.db "Hello, World",0
.end
end