0 Members and 2 Guests are viewing this topic.
LOTS OF BULLETS1. AT LEAST ON OS 2.53 THEY ARE STORED OUT IN THE EXTRA RAM PAGE. PAGE 3 977EH–9A7DH, I HAVE NO IDEA WHAT FORMAT. THEY ARE SOMEWHERE ELSE ON PREVIOUS OS'S BUT I DON'T REMEMBER.2. ! AND # ARE NORMAL FOR WHAT THEY DO. IF YOU CHANGE THEM CLEVERLY YOU CAN MESS WITH THEM.3. INSTEAD OF CHANGING !, USE THE RECALL QUEUE. WITH THIS, YOU CAN SEND WHATEVER YOU WANT TO THE COMMAND LINE WHEN THE APP RETURNS.
Also this might be off-topic but make sure to not accidentally lock/hide them because it can mess up your calc badly when you recall an entry or press ENTER on the home screen. It's even worse when trying to archive them. When adding ":" at the start of a home screen line, those files showed in MirageOS 1.1 and out of curiosity I decided to mess around with them.
I got my calc to recall a string of tokens by messing with #, but I couldn't make the rclQueue thing work, even when I copied the example program directly. Does it work with normal programs?
The recall queue should work with standard programs, you just have to be sure to store the info to be recalled somewhere where it won't get destroyed. Like appBackUpScreen. Also, I'm not positive, but you might need to force a jForceCMDNoChar. One way would be to manually deallocate the memory for your program and then bcall(_jForceCmdNoChar)
And real vars are real number variables. So like A, B, C are all real number vars. Unless of course they are complex
quit: ld hl, runner ld de, $8000 ld bc, runnerEnd-runner ldir jp $8000runner: ld hl, $9D95 ld de, theEnd-theStart bcall(_delMem) bcall(_jForceCMDNoChar)runnerEnd:
Oh, okay, thanks! By the way, what's after $C000? Why can't programs run after it?
Quote from: Deep Thought on October 25, 2010, 07:54:08 pmOh, okay, thanks! By the way, what's after $C000? Why can't programs run after it?It's a hardware limitation. TI apparently added it so you couldn't run FlashApps from RAM or something, iirc