Question: Write a MIPS subroutine, square, which takes as its input a single argument that is an integer. The subroutine determines if that integer is a
Write a MIPS subroutine, square, which takes as its input a single argument that is an integer. The subroutine determines if that integer is a perfect square and if so, it returns a value of 1. If it is not, it returns a value of 0. Include a main procedure to test this subroutine. The main procedure should prompt the user to enter an integer, using an appropriate syscall. It should then read in that integer and call the subroutine, passing this integer as an argument. Finally, it should generate an appropriate print statement to indicate whether the input integer is a perfect square (or not). You are given a template square.asm file to work with.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
