A83: Re: Rom Calls...and matrices.


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

A83: Re: Rom Calls...and matrices.




James....
I don't know if this will help but maybe you can help me on some of the
comments I made too.

#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
;Ok What are you cheacking here
  inc   de
  inc   de ; Gone to the fith byte of OP1, yes?
  ld    bc,0101h       ; Do you want a hex number here?
  ld    a,10d
  call  _setxxop1    ;What does this do?
  call  _puttomat    ; And this too.
  ret

matrixname:
   .db matrixobj,TVARMAT,TMATA

.end
END


>From Conway