[6 points] Write a MIPS assembly language program version of the following pseudo
code segment:
A[100], B[100], C[100] - three arrays that hold 100 integers each
Declare an integer variable i = 99 to represent a loop index
Repeat the following two instructions while i > 4
C[i] A[i-2] + B[i-1];
i = i-2;
Comments
Leave a comment