Question: Write a MIPS program that will handle calculating minifloat addition for two numbers using the rules discussed in class and storing each of the parts

Write a MIPS program that will handle calculating minifloat addition for two numbers using the rules discussed in class and storing each of the parts as a binary integer. To do this, each 'minifloat' number will need to be represented (I suggest hard coded) as one register for the sign, one for the exponent part, one for the 'significand(which you then convert to the fraction part). Hard coding means here that you don't need to read in the 6 parts as user input, just have something like

li $s0,0

li $s1, 12

li $s2,5

which is equivalent to a minifloat of 0 1101 101 = 1.101 * 24(12-7) = 1.101*215

This means your program will be work with at least 6 registers as variables. For testing, show that your program can correctly calculate the Lab 5 X+Y

X = 0 1001 010

Y = 0 0111 110

and A+B

X = 0 1001 010

Y = 0 0111 110

and then one other example of your choosing.

Dont worry about special cases of 0 0000 000 or 1 1111 111 or similar, but your program should detect overflow. This will involve a lot of (in your head) jumping back and forth between decimal and binary potentially: thats the point.

PS :[one example will be enough for me to understand]

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!