Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
TI-82 coding
#1
I', making a basic movent program in TI-82 BASIC, but this runs really slow. is there to speed it up?

Code:
:8->X
:5->Y
:ClrHome
:Output(Y,X,"X")
:Lbl 1
:If getkey=26
:Then
:ClrHome
:Output(Y,X,"X")
:X+1->X
:End
:
:If getkey=24
:Then
:ClrHome
:Output(Y,X,"X")
:X-1->X
:End
:Goto 1
Reply
#2
I would do something like
Code:
getkey->Z
If Z=24
Then
..
End
If Z=26
Then
..
End
roeten van Frenkel
Visit us at The Official S&F PROD. Homepage
Reply
#3
thank you much faster
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)