Add immediate unsigned (no overflow trap) : Sets $t1 = $t2 + immediate. The immediate is a signed 16-bit value sign-extended to 32 bits; no overflow exception is raised. Despite the name the immediate is sign-extended, not zero-extended. The most common add-immediate instruction.
addiu
Operands
$reg, $reg, immVariants
- Add immediate unsigned (no overflow trap) : Sets $t1 = $t2 + immediate. The immediate is a signed 16-bit value sign-extended to 32 bits; no overflow exception is raised. Despite the name the immediate is sign-extended, not zero-extended. The most common add-immediate instruction. addiu $t1,$t2,-100
- ADDition Immediate Unsigned: set $t1 to ($t2 plus 32-bit immediate), no overflow addiu $t1,$t2,100000
Loading...