1756
The Axe Parser Project / Re: Axe Parser
« on: July 24, 2011, 11:08:02 pm »
..or runer and others helping quigibo with the parser
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to. 1756
The Axe Parser Project / Re: Axe Parser« on: July 24, 2011, 11:08:02 pm »
..or runer and others helping quigibo with the parser
1757
Axe / Re: Axe Q&A« on: July 24, 2011, 10:33:56 pm »
Goto A would jump to Lbl A. Repeat getKey(15):End waits until the user presses clear.
As for the code, A is always increased, not just when a key is pressed. What might work is checking if the byte is non-zero, after the byte is stored. Also I would change lines like this If K=36:7→{N+A}End to If K=36:7→{N+A}:End. There's more optimized ways to handle it, but the way you have it works enough. Btw numbers in axe/asm can only be up to two bytes. trying to make a three-byte number won't work. Axe is a lot less complicated than asm, but has some of the same concepts (pointers, data, etc) 1758
General Calculator Help / Re: My OS (2.43) is a heap of ruins!« on: July 24, 2011, 04:28:25 pm »
When you do mode alpha s from TIOS, it says "This will clear all memory" under "Enter self-test?"
1759
Official Contest / Re: ReadMe Fights« on: July 24, 2011, 04:20:41 pm »* Darl181 wrote mine not in one minute, but two...? Personally I prefer not to go into the ascii art and stuff, normally I open a readme to figure out how to use something I've drafted a few "MSD8X-friendly" readmes (because the new msd8x can only view the first graphscreen-sized page of a txt, which is about the second the second line of this post ) which just jump right to the important parts. 1760
General Calculator Help / Re: My OS (2.43) is a heap of ruins!« on: July 24, 2011, 04:16:26 pm »
So "This will clear all memory" is kind of bluffing or something?
1761
General Calculator Help / Re: My OS (2.43) is a heap of ruins!« on: July 24, 2011, 04:13:55 pm »
Just as a curiosity, is this the same thing as the MODE ALPHA S self test (just started differently, from boot rather than called by OS) or is it more thorough somehow?
1762
Axe / Re: Axe Q&A« on: July 24, 2011, 02:43:51 pm »
Squidgetx made that routine, so idk really
But iirc what length() does is it goes through data until it reaches a zero, then returns that number. If this is looped and used properly one could skip a definable number of [00]s, which the programmer could put in to separate strings and such. Something to remember: Axe and basic are completely different. The only thing they share are the editor and the tokens. So a good part of the stuff that works in basic won't work in Axe, and vice-versa. So waht you're trying to do with this is just have one number be put in, or a string of numbers? Because the code above will only store one number to the variable. (actually I don't see the point of using length() in this, what are you trying to do with it?) 1763
General Calculator Help / Re: My OS (2.43) is a heap of ruins!« on: July 24, 2011, 02:30:41 pm »
Ok, it's hard to tell what's wrong with this, but Axe 1.0.X has some major glitches. Avoid.
Try this. Take out a battery. Press and hold DEL. While holding Del, put the battery back in. It should say it's waiting for an OS. At this point try re-sending the OS using TiLP or TI-connect. See if that works... EDIT: what did you run beforehand that you think might have caused this? Axe 1.0.X? Some OS-modding program that went haywire? 1764
Miscellaneous / Re: What is your avatar?« on: July 24, 2011, 02:16:07 am »
Paint.NET
It should be somewhat the same process in gimp... Here's now in a nutshell: Spoiler For lots of text: EDIT: used this, and a website, to animate the well-used Portal X sprite ^_^ http://i199.photobucket.com/albums/aa72/builderboy2005/dude.jpg 1765
Axe / Re: Axe Q&A« on: July 24, 2011, 01:59:21 am »
Input is really buggy, personally I'd only use it as a last resort. You'd probably be better off making your own input routine (or use one from the routines thread, such as this from the routines thread)
1766
Miscellaneous / Re: What is your avatar?« on: July 24, 2011, 01:51:29 am »
Added some stuff to the script.
DS guy Tio guy Jetpack guy (really old but I like the sprite ) 1767
Axe / Re: Axe Q&A« on: July 24, 2011, 01:16:36 am »The code from before you edited it, meaning the code with {Str1+I-1}, works correctly.That meaning, it displayed the string fine, and quit without a cinch. Code: (What I'm using) [Select] .ATEST Worked without a problem for me.
1768
Axe / Re: Axe Q&A« on: July 24, 2011, 12:52:12 am »
It probably isn't displaying the string because it crashes before it gets to the code to display the string.
EDIT: {Str1+2I-2} ? That would make it work with two-byte numbers if you had the r. Just for the record, two hex digits (ie [00]) make one byte, not two. EDIT2: The code from before you edited it, meaning the code with {Str1+I-1}, works correctly. What might have happened is it displayed the string and quit so fast you didn't see it? Try putting a Pause 1900 at the end (pauses for about a second) and then see what happens. 1769
Axe / Re: Axe Q&A« on: July 24, 2011, 12:37:38 am »
Just as a hint/rule of thumb, you can count from zero--so that would be For(I,0,15). Also iirc parenthesis, for the most part, should be closed.
At what part does it crash? What might help figure out what's going on (because frankly I'm kind of confused at this point as well, I'll prolly have to test it or something ): put in some Disps so you can tell how far it gets into the code before it goes. Is this the entirety of the code, or is there something else in the program that might be messing with it? 1770
Other Calculators / Re: Your Dream Calc RPG« on: July 23, 2011, 10:44:55 pm »
7: One into which a person (who's a complete newb at RPG's) can enter and won't be lost from the beginning, wondering what "mana" or whatever is.
8: Different difficulty levels (read: easy =P) |
|