Implement half precision floating point addition in MIPS assembly language. Prom
ID: 3547274 • Letter: I
Question
Implement half precision floating point addition in MIPS assembly language. Prompt user to
input two floating point (decimal) numbers and compute and display the sum.
In half precision format, 16 bits are used to represent a floating point number. The exponent field
is 5 bits wide while the significand field has 10 bits.
You will need to convert single precision floating point number to half-precision floating point
number and then perform your calculations.
Your program should be able to handle negative numbers as well. Also, if user enters an out of
range number for half precision format, your program must raise an exception message.
You MUST NOT use the MIPS floating point instructions.
As always, after one set of inputs, program must ask if the user wants to enter more numbers.
Explanation / Answer
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.