Currently I have an Array of a length of 8 bytes, assuming all the bits in the Array alternate between 0 and 1 [0, 1, 0, 1] etc, and I load the address of the Array like so:
la $t0, Array
li $t1, 1
srlv $t2, $t0, $t1
Would the array become [1, 0, 1]? I'm supposed to get bits from within a byte in MIPS and this was the method I was going to use, I don't know a better way right now, but any help is appreciated.