Yeah, I believe Elite used vectots back in the day. Amazing how clever and ingenious these guys were with basic technology. Check it out! "Elite Dangerous" is it's predecessor.
Darn, I tried XSCREEN 2,128,4
it still won't let me use SPOFS after DISPLAY 1 without getting that error. If I do it without Display 1 then it just won't show up on the bottom screen.
@King It's okay, thanks for trying!
@V360 Actually I didn't allocate any, it's just XSCREEN 2. I'm not having any problems on the top screen, perhaps I need to allocate some for the bottom?
Hmm yeah I did that, and then tried setting the Y-position to something like 300-600 and it would just disappear. Let me check again and make sure I didn't overlook something.
Your code isn't looping until it gets to the timer loop. You're only looping @main if you push button 32. You need a VSYNC at the end of your loop or it will run too fast. Also, you should create a function for your timer and just put that in the main loop. Create function like this:
DEF TIMER
TIME=TIME+1
LOCATE 1,3
? TIME
END
Then just put the word TIMER in your main loop.