I'm a newcomer to MIPS and am having a hard time figuring our what this snip of code means... Where $s6 is the start of an array A:
addi $t0,$s6,4
I'm not sure if this means $t0 = A[4] -or- If it means $t0 = A[0] + 4, take the value in A[0] and add four to it saving it back into A[0]
Any help would be really appreciated.
Thank you in advance!!