A83: Rom Calls...and matrices.


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

A83: Rom Calls...and matrices.




> Hey James. You do reilise that TI hasn't rerleased all of the ROM in
those
> include files. Just look at the source for squish.

Those ROM calls were taken from squish.inc....I just went through the file
and copied all the calls I wanna see.  I keep trying to figure out matrices
myself, but I always get a "ERR:Link" error when I run the
programs...here's what I've tried:

.NOLIST
#define equ .equ
#define EQU .equ
#define end .end
#include "ti83asm.inc"
#include "tokens.inc"

.LIST
#define matrixobj 02h
.org 9237h

  call  _ZEROOOP1   ;Ti documentation say zeroop1!
  ld    hl,matrixname
  ld    de,op1
  ld    bc,3
  ldir
  call  _chkfindsym
  inc   de
  inc   de
  ld    bc,0101h
  ld    a,10d
  call  _setxxop1
  call  _puttomat
  ret

matrixname:
   .db matrixobj,TVARMAT,TMATA

.end
END


HELP...

James.