solomon_13000
New member
- Joined
- Mar 7, 2007
- Messages
- 47
I did a floating point addition using 8-bits mantissa and 5 bits exponent. The answer I obtain for:
1) 4.5 + 5.0
01001100 , 00100
2) -12.25 - 10.5
10100101, 00001
3) 7.25 - 14.0
00001101, 00001
4) 0.5 + 0.375
00110000, 00001
5) 0.2 + 0.0625
00001100, 00001
Is my solution above correct.
1) 4.5 + 5.0
01001100 , 00100
2) -12.25 - 10.5
10100101, 00001
3) 7.25 - 14.0
00001101, 00001
4) 0.5 + 0.375
00110000, 00001
5) 0.2 + 0.0625
00001100, 00001
Is my solution above correct.