Merge pull request #212 from dcondrey/master

Numerous obscure examples
This commit is contained in:
Mike Donaghy
2015-09-06 20:16:48 -04:00
24 changed files with 339 additions and 1 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