For this assignment, use the Mars simulator to write a MIPS program that allows the user to continually calculate the area and perimeter of a rectangle In your main function (i.e., after the main label) ask the user to enter the width and length of the rectangle. Then, pass these values to a function named calcArea which calculates the Rectangle's area, width * length, and its perimeter, 2 * (width + length). calcArea should return the two calculated values. Back in main, display the results to the user. Ask the user if they would like to perform the calculations for another rectangle. You can simply have the user enter '1' for yes and '0' for no. If they choose yes, loop back to the start of main. If they choose no, the program should end.

C++ for Engineers and Scientists
4th Edition
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Bronson, Gary J.
Chapter6: Modularity Using Functions
Section: Chapter Questions
Problem 7PP: (Numerical) Heron’s formula for the area, A, of a triangle with sides of length a, b, and c is...
icon
Related questions
Question

Please answer this in MIPS programming and I need to get this thing done soon.

  • For this assignment, use the Mars simulator to write a MIPS program that allows the user to continually calculate the area and perimeter of a rectangle
    • In your main function (i.e., after the main label) ask the user to enter the width and length of the rectangle.
    • Then, pass these values to a function named calcArea which calculates the Rectangle's area, width * length, and its perimeter, 2 * (width + length).
    • calcArea should return the two calculated values.
    • Back in main, display the results to the user.
    • Ask the user if they would like to perform the calculations for another rectangle.
      • You can simply have the user enter '1' for yes and '0' for no.
        • If they choose yes, loop back to the start of main.
        • If they choose no, the program should end.
  • Hint: To perform the multiplication for the area, you can use the mul pseudoinstruction which takes the following form: 

mul $destinationRegister, $sourceRegister1, $sourceRegister2

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 7 steps with 5 images

Blurred answer
Knowledge Booster
Returning value from Function
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning