Omnimaga

Calculator Community => TI Calculators => Axe => Topic started by: Eniripsa96 on September 09, 2011, 06:34:34 pm

Title: Chaning type byte?
Post by: Eniripsa96 on September 09, 2011, 06:34:34 pm
Is there a way to change the type byte of a program using axe, for example, changing it into an appvar? If so, how?
Title: Re: Chaning type byte?
Post by: chattahippie on September 09, 2011, 10:04:33 pm
I know that you could create a new appvar and copy your data into it, which is similar to what you are suggesting
Title: Re: Chaning type byte?
Post by: FinaleTI on September 09, 2011, 10:09:47 pm
If you wanted to change the type byte of a variable without creating a second copy, you'd need to find the variable's VAT entry.
A simple tutorial on the VAT is located here (http://ourl.ca/9291).
Title: Re: Chaning type byte?
Post by: Eniripsa96 on September 10, 2011, 10:34:28 pm
Yeah, I didn't want to make a second copy since I want it reversible as well. I got it now though, so thank you!