1
The Axe Parser Project / GDB and output problem
« on: October 17, 2012, 04:47:39 pm »
I have this code
Now, what should happen if you repeatedly press math is that you get an output that it "AAAAAAAAAAAAAAA"
But what is really happening is a display like "Annnnnnnnnnnn" with the "n"s italicized.
It works properly if i leave out the line with the GDB write, or if i don't add a number to the pointer.
I am new to Axe, so most i just figured out by trial and error, but i can't firgure this one out
Code: [Select]
Repeat getKey(9)
0~K
If R<14
If getKey(47)
Output(R,0,"A"
R+1~R
1~{GDB3+1}
47~K
End
While getKey(K)=1
End
End
End
In case it wasn't self explanatory, ~ is the Sto>.Now, what should happen if you repeatedly press math is that you get an output that it "AAAAAAAAAAAAAAA"
But what is really happening is a display like "Annnnnnnnnnnn" with the "n"s italicized.
It works properly if i leave out the line with the GDB write, or if i don't add a number to the pointer.
I am new to Axe, so most i just figured out by trial and error, but i can't firgure this one out