I have this question and I am not sure how to solve the question right. The location src contains the word 0x12348765. In register $t1 is the word 0x87654321. What value comes after executing these commands in register $t1:
la $s0, src
lb $t1, 1($s0)
My question: what happens in the 2nd line of command? What is the difference, if you use 0($s0) instead?
I am not sure what values will be taken, either 65 or 87?