Assembly:

SLTIU rt, rs, u

nanoMIPS

Set on Less Than Immediate, Unsigned

Purpose:

Set on Less Than Immediate, Unsigned. Set the register $rt to 1 if the unsigned value inregister $rs is less than immediate u, and 0 otherwise.

Availability:

nanoMIPS

Format:

100000

rt

rs

0101

u

6

5

5

4

12

Operation:

GPR[rt] = 1 if unsigned(GPR[rs]) < u else 0

Exceptions:

None.