I'm trying to convert a 16 bit floating point binary into a decimal number.
My binary number is 0010000101111100
Separation: 0|01000|0101111100
Sign: 0
Exponent: 01000 is 8 in Decimal
Mantissa:
Looking for an explanation on how I can use the Exponent and Mantissa to work backwards and find my decimal number. Thanks.