Author Topic: [Axe Parser] Bytes?  (Read 17906 times)

0 Members and 1 Guest are viewing this topic.

Offline Quigibo

  • The Executioner
  • CoT Emeritus
  • LV11 Super Veteran (Next: 3000)
  • *
  • Posts: 2031
  • Rating: +1075/-24
  • I wish real life had a "Save" and "Load" button...
    • View Profile
Re: [Axe Parser] Bytes?
« Reply #45 on: March 23, 2010, 09:46:37 pm »
Because in Axe, the ' token means that you are in Hex, and 0A in Hex = 10 in Dec :).  Currently the only way to store data into Ram is by Hex, like this:

[010AFF]->Str1

which ends up looking like this in Ram

{1,10,255}

Hopefully in the future you will be able to input data like this as well :) But no matter how you put the data in, it is always extracted as Decimal.

You might have missed it in the new update.  That was added already!  Its the deltalist command.
« Last Edit: March 23, 2010, 09:47:24 pm by Quigibo »
___Axe_Parser___
Today the calculator, tomorrow the world!

Offline Raylin

  • Godslayer
  • LV10 31337 u53r (Next: 2000)
  • **********
  • Posts: 1392
  • Rating: +83/-25
  • I am a certifiable squirrel ninja.
    • View Profile
    • Ray M. Perry
Re: [Axe Parser] Bytes?
« Reply #46 on: March 25, 2010, 02:10:21 pm »
Hmm...

I looked at the program writeback function.
Quote from: SirCmpwn
L1: Asm(21788411E389010900EDB0) \ Asm(21E389E7EFF1421A4F131A4713131321959D0B0BEDB0)
L2: Asm(21788411448D010900EDB0) \ Asm(21448DE7EFF1421A4F131A4713131321959D0B0BEDB0)
How does it work?

I mean, if someone wrote to GBD1, Pic1, and Str1, are you saying that the program will save all of those values?
And, if that's the case, then how do you delete or clear out the data you don't need saved?
Bug me about my book.

Sarah: TI-83 Plus Silver Edition [OS 1.19]
Cassie: TI-86 [OS 1.XX]
Elizabeth: TI-81 [OS 1.XX]
Jehuty: TI-83 Plus Silver Edition [OS 1.19]
Tesla: CASIO Prizm







SirCmpwn

  • Guest
Re: [Axe Parser] Bytes?
« Reply #47 on: March 25, 2010, 02:11:32 pm »
Yes, it would.  And you can't clear out the data.  Sorry.
At some point I will write a routine to let you save to a specific AppVar or something.

Offline Raylin

  • Godslayer
  • LV10 31337 u53r (Next: 2000)
  • **********
  • Posts: 1392
  • Rating: +83/-25
  • I am a certifiable squirrel ninja.
    • View Profile
    • Ray M. Perry
Re: [Axe Parser] Bytes?
« Reply #48 on: March 25, 2010, 02:24:22 pm »
That would be nice...

And, are you serious when you say you can't clear out the data?
Not even in the Axe program itself?
You can't delete the data in the pointer?
Bug me about my book.

Sarah: TI-83 Plus Silver Edition [OS 1.19]
Cassie: TI-86 [OS 1.XX]
Elizabeth: TI-81 [OS 1.XX]
Jehuty: TI-83 Plus Silver Edition [OS 1.19]
Tesla: CASIO Prizm







SirCmpwn

  • Guest
Re: [Axe Parser] Bytes?
« Reply #49 on: March 25, 2010, 02:29:11 pm »
Yes.  You can delete the data, of course, but if you set {GDB1} from 0 to 1, it will stay at 1 until you change it back.

Offline Raylin

  • Godslayer
  • LV10 31337 u53r (Next: 2000)
  • **********
  • Posts: 1392
  • Rating: +83/-25
  • I am a certifiable squirrel ninja.
    • View Profile
    • Ray M. Perry
Re: [Axe Parser] Bytes?
« Reply #50 on: March 25, 2010, 02:30:56 pm »
Okay.
Good.
:)

I can work with that.
Also, THANK YOU for your help with bytes.
It has helped IMMENSELY.
Bug me about my book.

Sarah: TI-83 Plus Silver Edition [OS 1.19]
Cassie: TI-86 [OS 1.XX]
Elizabeth: TI-81 [OS 1.XX]
Jehuty: TI-83 Plus Silver Edition [OS 1.19]
Tesla: CASIO Prizm







SirCmpwn

  • Guest
Re: [Axe Parser] Bytes?
« Reply #51 on: March 25, 2010, 02:34:56 pm »
Of course.