0 Members and 1 Guest are viewing this topic.
Ok. Fair enough. And what about text commands. If I wanted to display simple text on the homescreen, how would i do it.
Can an Axe Parser program archive itself?
After you select the name of the appvar, immediately unarchive it. Then, when you try to do getCalc() you're sure that if it existed, its definitely in RAM and so it only returns 0 if it doesn't exist.To write data, you have to store the pointer that is returned by getCalc() either in a variable or in RAM. Then you read and write to that location as if it were any other RAM location. The same way you would do 100->{L1+6} You can do 100->{A+6} if you stored the appvar pointer to A.
Quote from: ACagliano on April 07, 2010, 12:48:12 pmCan an Axe Parser program archive itself?Yes. Technically, it is not running the actual program, but a copy of the actual program, so you can archive it. You just need assembly routines.