Re: A86: Rom call reference


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

Re: A86: Rom call reference




I know there's some pertty good documentation on "the guide" at ticalc.org

go to the programming section,
columns and tutorials,
at the bottom there's a ticalc.org exclusive section, it's the first thing 

about the _getky it all depends what compiler you're using.  I think I use the ti86asm.inc 
to get that to work just use
  call _getkey
it then waits for a key to be pressed
if you want to check to see if ENTER was pressed use
  call _getkey ;waits for key
  cp K_ENTER   ;checks the key pressed with enter
  jp z,Enter   ;if it was enter then it jumps to the label Enter

I hope that was helpful

James
KC5ZFZ



Follow-Ups: