Trying to get a program to run on my ti84cse,
Code:
running w/ batch: spasm64.exe a.asm bin\out.8xp
results in : a.asm:14: error SE113: Unknown opcode 'hl'
In ignoring the error, the program fails to run on my calculator when passing it to Asm(). Assembling w/ spasm, on 64-bit machine. Transfering w/ TI connect.
Code:
#include "ti84cse.inc" ; eq file
.assume ADL=1
.org userMem-2
.db t2ByteTok, tasmCmp
b_call(_ClearFullScreen)
ld hl,$0
ret
InsertText:
.db "a", 0
.end
running w/ batch: spasm64.exe a.asm bin\out.8xp
results in : a.asm:14: error SE113: Unknown opcode 'hl'
In ignoring the error, the program fails to run on my calculator when passing it to Asm(). Assembling w/ spasm, on 64-bit machine. Transfering w/ TI connect.