From 7280cd9774d4977b4718031e0fe77dbf6abfad49 Mon Sep 17 00:00:00 2001 From: David Date: Wed, 26 Aug 2015 17:41:33 -0700 Subject: [PATCH] Create z80stealth_ti83calculator.z80 --- z/z80stealth_ti83calculator.z80 | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 z/z80stealth_ti83calculator.z80 diff --git a/z/z80stealth_ti83calculator.z80 b/z/z80stealth_ti83calculator.z80 new file mode 100644 index 00000000..339e1eea --- /dev/null +++ b/z/z80stealth_ti83calculator.z80 @@ -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