I have to create a floating point implementation for a 68k processor in IEEE754 format, and I've figured out how to do all the other basic operations (conversion from decimal, addition, subtraction, multiplication), but I can't figure out how to do division. From my understanding, you're supposed to divide the mantissas and then subtract the exponents. However, if you divide the mantissas, you get ANOTHER floating point, and that's definitely not what I want nor can use (since the only division function the 68k processor provides shows the result of integer division, and the modulus remainder answer).
Can anyone provide an example of how to do this kind of division on a 68k processor, or in general with my limitations?
