TIMER fuction
Posted: Tue Sep 28, 2004 11:11 pm
How accurate can the TIMER fuction be? I tried INT(TIMER*100) in the following snippet:
and it locks up. I tried using >= but that doesn't change much...
Code: Select all
pause:
start! = INT(TIMER * 100)
stp! = start! + waittime!
DO
curnt! = INT(TIMER * 100)
LOOP UNTIL stp! = curnt!
RETURN