1
Axe / Modifying real numbers from ram ---AXE PARSER
« on: October 09, 2011, 12:14:26 am »
Hey I have a question about the Axe Parser
How would I create a program that modifies and changes real numbers from RAM?
I figure that creating an assembly program that can mass store and manipulate data and store it back into ram would be useful in some purposes. For instance, storing 5 to Real Number A, 8 to B, 1 to C, 12 to D, and so on.
I don't understand how to apply pointers to real numbers; so far this is what I have
"varA" > Str1
GetCalc(Str1) > B
5 > {B}r
The problem is that this stores the value 0.5 to A instead of 5. Im confused. Please help!
How would I create a program that modifies and changes real numbers from RAM?
I figure that creating an assembly program that can mass store and manipulate data and store it back into ram would be useful in some purposes. For instance, storing 5 to Real Number A, 8 to B, 1 to C, 12 to D, and so on.
I don't understand how to apply pointers to real numbers; so far this is what I have
"varA" > Str1
GetCalc(Str1) > B
5 > {B}r
The problem is that this stores the value 0.5 to A instead of 5. Im confused. Please help!