Question: Instructions Write a MIPS32 program to simulate the multiplication of two integer values by using repeated addition, implemented recursively . Specifically, implement this relationship: Multiplicand

Instructions

Write a MIPS32 program to simulate the multiplication of two integer values by using repeated addition, implemented recursively. Specifically, implement this relationship:

Multiplicand Multiplier = Multiplicand + ((Multiplicand -1) Multiplier)

where Multiplicand 1 = Multiplicand

Your program should prompt for and accept the numbers, and display the result, similar to the following:

Enter the multiplicand: 7

Enter the multiplier: 9

7 * 9 = 63

Implement your recursive function as a MIPS32 subroutine that conforming to this:

Inputs:

$a0 : multiplicand

$a1 : multiplier

Outputs:

$v0 : product

You may assume that the final product will fit within a 32-bit value

Be sure to save & restore the necessary registers to/from the stack appropriately.

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!