asked 172k views
4 votes
Some architectures support the ‘memory indirect’ addressing mode. Below is an example. In this case, the register R2contains a pointer to a pointer. Two memory accesses are required to load the data. ADD R3, @(R2)The MIPS CPU doesn’t support this addressing mode. Write a MIPS code that’s equivalent to the instruction above. The pointer-to-pointer is in register $t1. The other data is in register $t4.

asked
User Radi
by
7.4k points

1 Answer

3 votes

Answer:

Following is given the solution to question I hope it will make the concept easier!

Step-by-step explanation:

Some architectures support the ‘memory indirect’ addressing mode. Below is an example-example-1
answered
User Ygetarts
by
8.7k points