REGIMM 000001 |
rs |
TLTI 01010 |
immediate |
6 |
5 |
5 |
16 |
TLTI rs, immediate |
MIPS32, removed in Release 6 |
Trap if Less Than Immediate |
Trap if Less Than Immediate
To compare a GPR to a constant and do a conditional trap.
if GPR[rs] < immediate then Trap
Compare the contents of GPR rs and the 16-bit signed immediate as signed integers. If GPR rs is less than immediate, then take a Trap exception.
None
This instruction has been removed in Release 6.
if GPR[rs] < sign_extend(immediate) then SignalException(Trap) endif
Trap