Question: MIPS ASSEMBLY: Finding Average Write a program that calls a procedure to calculate the average of two values. Initialize the two values to be averaged

MIPS ASSEMBLY: Finding Average

Write a program that calls a procedure to calculate the average of two values. Initialize the two values to be averaged in main. Pass these two values as parameters on the stack to the average procedure.

-Load immediate values for num1 and num2 into save registers $s0, $s1 respectively.

-Create a procedure to calculate the average of the two values. Store the average result in the temporary register $t0.

-Use the stack to pass the values obtained in main to the procedure.

-Use the stack to return the result generated in the procedure back to main.

-Use the test values 30 and 6 for your test run.

-Be sure to create and destroy stack frames as needed to cleanly implement your solution.

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!