A83: Beginner's Question


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

A83: Beginner's Question




Hi,

I am new to Assembly programming on TI-83 Plus.  I have tried to get the
"GetKey" function to work on VTI, but it does not appear to respond to
keypresses and if I interrupt it with the Debugger, it shows it at a "halt"
instruction at 021Bh.  Following is my source code, which I assemble using
the Chaos assembler.  Can anyone suggest why this does not seem to work in
VTI?  (I have NOT tried to put this into the actual calculator.)

_GetKey              .equ     4972h

Loop:
 rst 28H
 .dw _GETKEY
 cp $21
 ret z
 jr Loop
 .end
 .end

Scot Watson




References: