Question: Translate the following C code to MIPS assembly code. Initialize the variables i, j, and counter. The variable counter is stored in register $s0. Maintain
Translate the following C code to MIPS assembly code. Initialize the variables i, j, and counter. The variable counter is stored in register $s0. Maintain its value before using it. Therefore, utilize the stack pointer to hold its current value to the memory before using it in the program. Assume that the base address of array A is stored in register $s1. Print the return value from the outer loop and return to the system.
C Code:
for (int i = 0; i < 10; i ++) {
for (int j = 0; j < 10; j ++) {
if (i + j == 5) {
counter = counter + A[2*i + 2];
else
counter = counter + A[i 2];
}
}
}
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
