Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

J: Floating points Write a MIPS program that will handle calculating minifloat addition for two numbers using the rules discussed in class and storing each

image text in transcribed

J: Floating points 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 $50,0 li $31, 12 li $2,5 which is equivalent to a minifloat of 0 1101 101 = 1.101 * 2^(12-7) = 1.101*245 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 and A+B and then one other example of your choosing. Don't 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: that's the point. J: Floating points 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 $50,0 li $31, 12 li $2,5 which is equivalent to a minifloat of 0 1101 101 = 1.101 * 2^(12-7) = 1.101*245 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 and A+B and then one other example of your choosing. Don't 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: that's the point

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Administrator Limited Edition

Authors: Martif Way

1st Edition

B0CGG89N8Z

More Books

Students also viewed these Databases questions

Question

74 Motivation concepts and applications.

Answered: 1 week ago

Question

Provide examples of KPIs in Human Capital Management.

Answered: 1 week ago

Question

What are OLAP Cubes?

Answered: 1 week ago