Re: A83: Re: question about moving programs around
[Prev][Next][Index][Thread]
Re: A83: Re: question about moving programs around
um...ok...I think i understand what you mean....But can anyone show me how to
do it? this is my basic dll code so far:
.NOLIST ;the basic file info
#define end .end ;blah blah blah
#define END .end
#define equ .equ
#define EQU .equ
#include "ti83asm.inc" ;norm includes
#include "tokens.inc"
.LIST ;where to start it
.org 9327h ;normal begining point
.db "dll" ;yes wonderful header i know ^_^
.db 2 ;number of dll's in file
.dw dll1,dll2 ;dll locations
; .dw endofdll ;used for searching I'm not sure if i'll need this...
dll1:
;put dll routine here
ret ;don't forget this!
dll2:
;dll routine...
ret
;endofdll: ;there! thats it!
.END
end
now i know how to make the pointer actually point to the correct script in
memory, but i want to know how to make dll2 call dll1 or something else like
that, currently i don't know how to make it have the inside jump/call. if
anyone can help me figuring this out I would appreciate it!