Assume that registers $s0 and $s1 hold the values 0x80000000 and 0xD0000000, respectively.
- What is the value of $t0 for the following assembly code?
add$t0,$s0,$s1add$t0,$s0,$s1
- Is the result in $t0 the desired result, or has there been overflow? 3. For the contents of registers $s0 and $s1 as specified above, what is the value of $t0 for the following assembly code?
sub$t0,$s0,$s1sub$t0,$s0,$s1
- Is the result in $t0 the desired result, or has there been overflow? 5. For the contents of registers $s0 and $s1 as specified above, what is the value of $t0 for the following assembly code?
add$t0,$s0,$s1add$t0,$t0,$s0add$t0,$s0,$s1add$t0,$t0,$s0
- Is the result in $t0 the desired result, or has there been overflow?