TestPleaseIgnore wrote: ↑Wed Jun 28, 2023 9:12 pm
I checked in MENU and the time is running. Also PRINT TI shows incrementing values.
But OK, I will debug this myself, at least I have something to play with

Jaroslav.
Yeah, it's been a while since I did anything on the emulator that involved trying to time things, so I could've been a few versions out of date. That's why I was careful to preface my comment with it being only my personal experience.
When I did, I was just setting a variable equal to TI, and then at the end of the program subtracting that variable from the current value of TI. Something like:
0 T0=TI
[...]
9999 ? TI-T0:END
And when I did that, it always gave me a value of 0. But if I instead did this:
0 TI=0
[...]
9999 ? TI:END
It would give me the elapsed jiffies between the start and end of the program, which is what I wanted. The same thing would happen if I checked TI$ for the current time of day. It would always be "000000" unless I set it first, then it would start running.
All that being said? I just did both of those things just now on R43, and it behaves as Jaroslav indicates.