Omnimaga

Calculator Community => TI Calculators => ASM => Topic started by: quasi_Phthalo on June 25, 2010, 02:20:24 pm

Title: 'Clean' exit from ASM prog
Post by: quasi_Phthalo on June 25, 2010, 02:20:24 pm
I wrote an ASM program that upon exiting, clears the homescreen and disables displaying 'Done'. However, there is always a random letter at the cursor. Where is that letter stored? and should I set it to $20 before exiting?

thanks
Title: Re: 'Clean' exit from ASM prog
Post by: Quigibo on June 25, 2010, 02:22:51 pm
You need to clear the Text Shadow, not just the LCD.  My guess is that you were using the ClrLCDFull command or something?  Use ClrScrnFull instead becasue that also clears the Text Shadow as well.
Title: Re: 'Clean' exit from ASM prog
Post by: quasi_Phthalo on June 25, 2010, 02:32:47 pm
ah! bingo. thanks