Question: Consider the following function in C. unsigned int function (unsigned int a, unsigned int b){ #a is in $a0, b is in $al do
Consider the following function in C. unsigned int function (unsigned int a, unsigned int b){ #a is in $a0, b is in $al do { if (b> a) b = b a; if (a > b) a = a - b; } while (a != b); return a; 1. Write the corresponding minimum program using MIPS ISA. You can use regular assembly lan- guage pseudo-instructions in your solution if you wish. Please provide comments to help the grader understand your code. (18) 2. What is this function doing? Provide your guess. (3)
Step by Step Solution
3.42 Rating (161 Votes )
There are 3 Steps involved in it
Code snippet Function unsigned int functionunsigned int a unsigned int b MIPS Assembly code function Save ra and s0 addiu sp sp 16 sw ra 0sp sw s0 4sp Move the arguments to registers move s0 a0 move s... View full answer
Get step-by-step solutions from verified subject matter experts
