hi all
i'm trying to solve an exercise;
there's an unaligned word, shifted 1/4 word right. it's address (where it should be if was stored correctly) is at register $s0.
i'm interested in storing the word at register $t1 using aligned commands only.
i tried;
lw $ta, $s0
sll $t1, $ta, 8
lw $ta, 4($s0)
srl $t2, $ta, 24
or $t1, $t1, $t2
is this solution correct?