Omnimaga

Calculator Community => Major Community Projects => The Axe Parser Project => Topic started by: nikitouzz on September 19, 2012, 12:34:13 pm

Title: the data in axe...
Post by: nikitouzz on September 19, 2012, 12:34:13 pm
voila, every time I put the data in a program I can not change ... theoretically we could with the command
:X→{Y}+GBDZ

but it does not work or it does bugger all changes or when its bad data ...

how to remedy it?

 :)
Title: Re: the data in axe...
Post by: jacobly on September 19, 2012, 12:40:31 pm
:X→{Y}+GBDZ
What this code does is store the value of X into the byte pointed to by Y, and then adds GDBZ to Y and does nothing with it.  I think what you want is X→{Y+GDBZ}. :)
Title: Re: the data in axe...
Post by: Sorunome on September 19, 2012, 11:31:02 pm
I thought you can't change data in GDBs anyways?
Title: Re: the data in axe...
Post by: Hayleia on September 20, 2012, 01:09:25 am
I thought you can't change data in GDBs anyways?
You can do it, except if you compiled as an application.
Title: Re: the data in axe...
Post by: Sorunome on September 20, 2012, 11:02:46 pm
I thought you can't change data in GDBs anyways?
You can do it, except if you compiled as an application.
Oh, that's why I couldn't >.>
Title: Re: the data in axe...
Post by: nikitouzz on October 08, 2012, 05:46:07 pm
Ok thank's ;) yes my code is not write ^^