0
Okay, I have the following exercise:
Taking into account the values present in the registers $t0 = 0x0000001A, $t1 = 0x00000006 and the following code to be executed by the MIPS processor, answer:
add $t2, $t0, $t1
srl $t3, $t2, 1
addi $t3, $t3, -8
div $t2, $t3
mfhi $t3
mflo $t4
sll $t3, $t3, 9
sub $v0, $t2, $t3
bne $t3, $t4, -32
jr $ra
(a) Conditional deviation is carried out?
It may seem like a stupid question, but I did not understand this "-32" in the penultimate line of the code. Is this -32 indicating the address in memory? What is it? Or is it wrong on purpose to answer the question a) be false?