I was wondering if there is a simple way to disable the status bar while running TI-BASIC.
This would be useful for things like keeping the graphics canvas set up for libraries, among other things.
Thanks
You can't remove the status bar in a basic program. You can write an asm program to draw over it and then not re-draw it, but a lot of commands in basic will trigger the status bar to be redrawn, so you might struggle to keep it clean. Something like this:

Code:
 call _RunIndicOff
 ld hl,vRam
 ld de,vRam+1
 ld bc,320*240*2
 ld (hl),$FF //fill with white
 ldir
 ret

Code:
CD480802 
210000D4
110100D4
01005802
36FF
EDB0
C9
  
Register to Join the Conversation
Have your own thoughts to add to this or any other topic? Want to ask a question, offer a suggestion, share your own programs and projects, upload a file to the file archives, get help with calculator and computer programming, or simply chat with like-minded coders and tech and calculator enthusiasts via the site-wide AJAX SAX widget? Registration for a free Cemetech account only takes a minute.

» Go to Registration page
Page 1 of 1
» All times are UTC - 5 Hours
 
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum

 

Advertisement