
So, all we know that there is differents ways to load data from the RAM (or ROM, why not?), but I was worried about how this will affect the speed (it's executing a LOT of code, and I need to preserve the 60 FPS).
Anyway, my question(s) is:
1) Exist a document or something wich shows the speed of each instruction on the M68K?
2) Lets say at certain point, I need to read and manipulate a lot of bytes in RAM, and I'm accesing them one by one (that is: move.b (var1),d0 / move.b d1,(var2) , etc). Those vars are in a range of 100 bytes. Is fastest if I put an offset in an An register and then I manage each value like "move.b var1(An),d0 / move.b d1,var2(An)"?
Well, I thinks that is all, I can not remember more question right now. Thanks for your replies, guys...