Author Topic: 'Clean' exit from ASM prog  (Read 2253 times)

0 Members and 1 Guest are viewing this topic.

Offline quasi_Phthalo

  • LV3 Member (Next: 100)
  • ***
  • Posts: 90
  • Rating: +1/-1
    • View Profile
'Clean' exit from ASM prog
« 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

Offline Quigibo

  • The Executioner
  • CoT Emeritus
  • LV11 Super Veteran (Next: 3000)
  • *
  • Posts: 2031
  • Rating: +1075/-24
  • I wish real life had a "Save" and "Load" button...
    • View Profile
Re: 'Clean' exit from ASM prog
« Reply #1 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.
___Axe_Parser___
Today the calculator, tomorrow the world!

Offline quasi_Phthalo

  • LV3 Member (Next: 100)
  • ***
  • Posts: 90
  • Rating: +1/-1
    • View Profile
Re: 'Clean' exit from ASM prog
« Reply #2 on: June 25, 2010, 02:32:47 pm »
ah! bingo. thanks