Re: loading data from a zshell into main memory


[Prev][Next][Index][Thread]

Re: loading data from a zshell into main memory



Use the var functions in Usgard, or, if you want to make it for
zshell, simply write a routine that scans the VAT and either works
with, say, the 'x' var already there or create one.

Now the problem comes in:

you need to convert your number into TI's format. it's not integer.
ie; you cant just load '5' into x to emulate 5->x. I don't know what
the format is. perhaps it's the intel standard IEEE floating point. My
bet: make an asm program that spits out in string form the contents of
variable x. ie: you write 5->x and then you run your asm program which
makes the string. send it to your computer, and analyse. If you have
only a few numbers to put into x, just get the correct numbers this
way and store them in your program, that selects the right one when it
needs to store it's variable. It's not that easy, though, as you see.


References: