Do muls,divs tables make much of a difference?
--
_____________________________________________
_ _ ( ............ No Comment ................... )
(O)(-)//--------------------------------------------
( <> ) Ave,
/|\++/|\ Richard Tew
//||%%||\\ EMAIL: mis...@csc.canterbury.ac.nz
[Kermit] Term Beta Tester | PGP Key Available
Hey, another NZer! Choice Bro'...
I wrote a 3D game called Guardian, and tried the tables approach but it
made stuff all difference. Besides, it tends to tie up registers, and
reducing memory accesses are the best way to speed up Amiga code. I like
to make sure that intensive routines use ALL the 68K registers...you can
actually do quite a bit with address registers. Stuff a7 somewhere
before a routine and you can use that too! (forget multitasking though...)
Another thing is that on higher 680x0 chips, multiplies are actually
quicker than accesses to chip ram.
By the way, what fill optimization are you talking about?
Mark Sibly