Show Posts

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.


Messages - calcprogrammera

Pages: [1]
1
Axe / Re: Modifying real numbers from ram ---AXE PARSER
« on: October 12, 2011, 07:11:44 pm »
the variable A isnt being created! thanks! the version of axe that I was using was an older version haha

2
Axe / Re: Modifying real numbers from ram ---AXE PARSER
« on: October 12, 2011, 07:03:42 pm »
Hmm... so how would i get the address of, say the real number A.  I tried the following code on Wabbitmu and my calculator:
"varA" → Str1
GetCalc(Str1) → B
5 → float{B}

My guess is that the address that I am trying to store the value 5 to is incorrect.  For some reason the number 5 isnt being stored into the Ram into the real number A.  Any guesses on what could be wrong?

3
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!

Pages: [1]