I have a question regarding load words from an array in MIPS. If an array "A" starts with memory location of 100h, and I'd like to load the word into a register, would it be fine if I do something like,
lw $t0, 0x100($t2)
despite the offset place being the memory location, and the offset ($t2) being in the base address? The way I see it is $t2 + 0x100 vs 0x100 + $t2. Or is the only correct way is doing
lw $t0, $t2(0x100)
?