Question: Please solve in MIPS code only Project 1 Part B You are tasked to use positive integers to compute h-( f/ g ); #returns h-quotient
Project 1 Part B You are tasked to use positive integers to compute h-( f/ g ); #returns h-quotient and h-remainder i = ( f + g ) / h-quotient; #returns i-quotient and i-remainder j-( f-g ) % i-quotient; #returnsremainder More formally, write MIPS code to output the result of above expression of h, i, and j without using any built-in MIPS/MARS instructions for multiplication or division. The values already entered for Part A for a, b, c, and d can be used. Output the value of h, i, and j in a format shown below, as separate decimal integers. To receive credit, no multiplication, no division, and no shift instructions shall be used. Namely, do not use any of Imul, mul.d, mul.s, mulo, mulou, mult, multu, mulu, div, divu, rem, sll, sllv, sra, srav, srl, srlv). The goal is to compose your own division technique. In addition, use of a loop is required for credit to realize the division code. It is part of the project points to design a way to realize division using a loop. Do not use of Macro, Subroutines, or Functions in this project You can refer to the definition of division and how division works. For example, given a positive integer X, and a positive integer Y where X>Y then the division X/Y is computed such that unique integers Q and R satisfy Y * Q + R) where 0 R Y then the division X/Y is computed such that unique integers Q and R satisfy Y * Q + R) where 0 R
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
