GitHub_collection_hello-world/a/assembler_z80_ti83calculator.asm
2018-08-22 01:37:32 -03:00

21 lines
321 B
NASM
Executable File

.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