GitHub_collection_hello-world/a/Assembler Z80 TI83calculator.asm

21 lines
320 B
NASM
Raw Normal View History

2015-08-26 17:41:33 -07:00
.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:
2021-05-07 20:33:04 -05:00
.db "Hello World",0
2015-08-26 17:41:33 -07:00
.end
end