I keep getting an error when trying to execute this code.
Code:
Code:
; Program Name:
; Author(s):
; Description:
.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, string
BCALL(_PutS)
ret
string
.db "Hello, World!"
.end