Re: A83: Confuzed!
[Prev][Next][Index][Thread]
Re: A83: Confuzed!
Thanks for the 83+ help, Jeremy. Deleting the extra half of ti83plus.inc got
rid of most of my errors. But I still get 23 TASM errors from ti83plus.inc
and it also won't recognize bcall. I don't think switching to obj83 will
solve that problem. Do you have any advice? I changed to userMem, also.
Here is my new listing:
.NOLIST
#define equ .equ
#define EQU .equ
#define end .end
#include "ti83plus.inc"
.LIST
#define kClear 09h
.org userMem
begin:
DI
LD A,001H
OUT (003H),A
LD A,000H
OUT (004H),A
EX AF,AF'
EXX
EI
bcall(_getKey)
CP kClear
JP nz,begin
RET
.end
END
It won't recognize BCALL, lowercase or uppercase.
Once again befuddled,
Asm83P <-- my IRC name
Follow-Ups: