A83: help i'm learning ASM


[Prev][Next][Index][Thread]

A83: help i'm learning ASM




is this code ok?(it always says "label not found: (currow)"
i did what someone told me to i made a batch file called asm.bat that says:
tasm -80 -p60 -i -o20 %1 then when i run my code through it it always gives me
that error

.NOLIST
#define end .end
#define equ .equ
#include "ti83asm.inc"
#include "tokens.inc"
.LIST
.org    9327h
	call _clrLCDFull      
	ld hl,0003            
	ld (currow),hl
	ld hl,mem             
	call _PUTS            
	ret                  
mem:                   
   .db "   Mem Cleared",0

.end
END