A92: many things
[Prev][Next][Index][Thread]
A92: many things
well: i have been unable to send anything to the list for a moment, so
this message is going to be very long.
1) compilers:
please, give the line command you used
2) asm libs:
All ROM functions use the stack to get parameters ( the params are passed
in the same order as the one they are detailled )
"point p" is a C standard function prototyping: it declares that the
function needs a parameter of the type "point". uselessly, here, it calls
it p but this should not be of any concern to you.
The point structure is probably defined a little sooner. it is probably
made of two standard coordinates...
3) arrays:
2 dimensional arrays can be build easily:
size_x equ 10
size_y equ 10
move.w #5,d0 ; just loads the regs : x pos in d0, y pos in
move.w #5,d1 ; d1 and the number to store in array[x][y]
move.b #1,d2 ; is stored in d2
mulu.w #size_y,d1 ;
ext.l d0 ; get the offset of the data to get
add.l d0,d1 ;
lea array(pc),a0; get the the adress of array
move.b 0(d1,a0),d0 ; this will get the final result in d0.
array:
ds.b size_x*size_y
4) plusshell and door os
i just bought an 89 but i have no ti link cable. So, get some program to
use the $5 P link. Here is some info i got from some experiment:
the header to the 89 is: $98 ...
this will work for: ti89>ti89 / ti89>ti92plus / ti89>computer
please, make a linux toolkit or release your source so that i may
recompile evrything: i don' t have win95/dos and i hope to develop my
programs under linux
Last, but not least, i hope that someone used the linux link toolkit wit
the 92: i cannot get it to work: i can get and receive some simple bytes
but as it gets to the third part of the protocol (wait part, cf
ti-prot.txt), the computer does not receive anything....
is someone explains me why, i will write some simple program for the 89
under linux and perhaps dos....