MIPS Assembly Pointer to a Pointer? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-12T08:02:26Z http://stackoverflow.com/feeds/question/98236 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/98236/mips-assembly-pointer-to-a-pointer 1 MIPS Assembly Pointer to a Pointer? Tim Sally 2008-09-19T00:12:40Z 2008-09-19T00:21:17Z <p>I think I know how to handle this case, but I just want to make sure I have it right. Say you have the following C code:</p> <pre><code>int myInt = 3; int* myPointer = &amp;myInt; int** mySecondPointer = myPointer; </code></pre> <p>P contains an address that points to a place in memory which has another address. I'd like to modify the second address. So the MIPS code:</p> <pre><code>la $t0, my_new_address lw $t1, ($a0) # address that points to the address we want to modify sw $t0, ($t1) # load address into memory pointed to by $t1 </code></pre> <p>Is that the way you would do it?</p> http://stackoverflow.com/questions/98236/mips-assembly-pointer-to-a-pointer/98295#98295 2 Answer by Nils Pipenbrinck for MIPS Assembly Pointer to a Pointer? Nils Pipenbrinck 2008-09-19T00:21:17Z 2008-09-19T00:21:17Z <p>Yes, that's correct as far as I can tell. It would have been easier if you used the same variable names (e.g. symbols instead of hard register names).</p> <p>Why haven't you simply compiled the c-code and took a look at the list-file or assembly-output? I always do that when in doubt.</p>