Why are log tables used instead of reciprocal tables to speed up division?
I’m trying to optimize some SuperH assembly. The div is significantly slower than the mul. I’m considering testing a reciprocal table + mul and compare the speed of that to a div for my application. I understand that the memory access for the table will be slow too, but still might be faster than a div.