Home /
Expert Answers /
Computer Science /
write-a-mips-program-to-remove-a-given-element-from-an-array-below-is-an-example-of-the-c-code-se-pa548
(Solved):
Write a MIPS program to remove a given element from an array. Below is an example of the C code se ...
Write a MIPS program to remove a given element from an array. Below is an example of the C code segment to perform the above task. You may use a different code, but you have to write the code that you use as a comment before the MIPS code.
You may use any temporary registers from $t0 to $t9 or saved registers from $s3 to $s7. Clearly specify your choice of registers and explain your code using comments. Example Test: If the values of $s0 through $s2 and array elements are initialized in the simulator as: (Use the ' + ' button under the Registers display to initialize register values for $s0,$s1, $s2 and the '+' button under the Memory display to initialize the initial array elements.)
\begin{tabular}{|c|c|} \hline Registers & Data \\ \hline$s0 & 4000 \\ \hline$s1 & 10 \\ \hline$s2 & ?15 \\ \hline \end{tabular} \begin{tabular}{|c|c|} \hline Addresses & Contents \\ \hline 4000 & 4 \\ \hline 4004 & 8 \\ \hline 4008 & ?15 \\ \hline 4012 & 5 \\ \hline 4016 & ?10 \\ \hline 4020 & ?15 \\ \hline 4024 & 0 \\ \hline 4028 & ?15 \\ \hline 4032 & 40 \\ \hline 4036 & ?15 \\ \hline \end{tabular}
The resultant registers are: The resultant array is: Note: Only the registers $s0,$s1,$s2 and the first '\$s1' elements in memory will be checked by the automated tests.