Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have been trying to understand floating point numbers in Assembly, but mention keeps being made of the mantissa and exponent.

I really have no idea what these two words mean or are referring to...could someone explain it to me in relation to floating point arithmetic, or point to an easy to understand explanation?

share|improve this question
2  
What part of the wikipedia page confused you? en.wikipedia.org/wiki/Floating_point seems to have the definitions you're looking for. What was wrong with them? – S.Lott Sep 7 '11 at 19:50

1 Answer

http://en.wikipedia.org/wiki/Floating_point

At the assembly language level, you usually don't need to worry about any of this unless you're actually doing bit-tricks with floating-point. The only case that could come up is performance degradation from denormals - which is also explained on wikipedia.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.