I was trying to solve this homework assignment but was unable to come up with a solution. Below is the problem,
Translate this code into MIPS machine
once_more:
lw $5, 48($6)
sub $5, $5, $2
bne $5, $0, once_more
Now the problem I am facing is that I have no idea what should be the value of the registers in this problem (I only studied $t0-$t7(8-15) and $s0-$s7 (16-23) values). Can anyone please help me with the values of these registers?
Thanks in advance.