Omnimaga
Calculator Community => Major Community Projects => The Axe Parser Project => Topic started by: ACagliano on May 05, 2011, 10:10:37 am
-
In my study of z80, I saw that there are floating point variables (Op1,Op2,Op3...). Where are these located in Axe? Is that the float command? And can someone post an example of how to use it?
-
Those aren't used in Axe as variables because they are too volatile and get overridden constantly (especially OP1 and OP2) by OS routines. Axe also uses some of that memory internally to manage grayscale during interrupts.
-
It also might be worthy to note that they are in fact *not* variables, but just locations in memory the OS uses to do specific operations. They can be used for much more than just floating point arithmetic.
-
Ok. Understood. I am making a chem program in Axe, so I just wanted to use a float as the final resting spot for an answer to a problem (since chem requires decimals). I won't be holding data long term or anything like that.
-
Any particular reason you are going with Axe? Basic actually far outweighs Axe in the area of advanced floating point math, as in Axe you would have to use pretty much all custom hex codes to work with floating point numbers, as well as any operations on them. What kind of program is it?
-
What do you mean by 'kind of program'. It's a chem suite. it does molar masses, balancing equations, lewis structures, and electron configurations.
-
Ah gotcha, in that case I myself would recommend Basic over Axe, on account of its easy to use floating point arithmetic, and its simple input features. In axe, you would end up having to rewrite almost every routine, or write hex to access the built in OS ones, while in basic everything is already set up.
-
I'll see what I can do. Is there a way to create and read/write appvars in basic, with no external routines/apps needed (I would use inline assembly if possible, but I want to avoid that route if it requires an external var). That's why I wanted to use Axe (or even assembly). I want the program to be completely functional on its own.
-
There is no way to write to appvars, but you can create and name your own lists, where you can store large amounts of data. Why do you need Appvars for a chemistry program?
-
To hold both text (different inputs to accept for elements, that equate to the same actual element) and numbers (lists hold only numbers).
-
Couldn't you use a String then? Just push the previous contents of the string into one of the almost never used polar equation variables and restore it when you're done.
-
Hmmm. I guess. I'm thinking of just doing this whole project in straight z80.
-
Wait do you want to make this in Axe or z80 asm?
-
I wanted to do it in Axe, but z80 might be easier. I have to see.
-
OP1 = {8478E}
OP2 = {8483E}
OP3 = {848EE}
OP4 = {8499E}
OP5 = {84A4E}
OP6 = {84AFE}
So you load/store the FP number to these locations in ram. Since they're just addresses, you can just make your own arbitrary FP variables in the Lx locations in Axe. ;)
Yeah, I think Z80 is easier for your math program.