Omnimaga

Calculator Community => TI Calculators => ASM => Topic started by: MrFinn on May 01, 2012, 02:19:05 pm

Title: how to program
Post by: MrFinn on May 01, 2012, 02:19:05 pm
how do i turn off the side bar that scrolls when a program is running? i use spasm and am trying to turn it off using b_call.
Title: Re: how to program
Post by: ben_g on May 01, 2012, 02:21:03 pm
Your topic doesn't seem to be in the correct place...
EDIT2: now it is: It was moved.

But to turn of that scrolling thing, you can either do bcall(_RunIndicOff) or just DI

EDIT: Welcome to omnimaga, introduce yourself (http://www.omnimaga.org/index.php?board=10.0) to get some peanuts.
Title: Re: how to program
Post by: thepenguin77 on May 02, 2012, 05:00:54 pm
But to turn of that scrolling thing, you can either do bcall(_RunIndicOff) or just DI

bcall(_runIndicOff) will be a permanent solution that will make sure the the program never displays the run indicator until you rerun it.

DI runs the risk of interrupts being enabled which will re-enable the run indicator. (Quite a few bcalls do this, and honestly, you might need some of them (bcall(_getCSC), bcall(_clrLCDFull) (TI's mistake here), bcall(_getKey), just to name a few))