Places the value 1 in register `xd` if register `xs1` is less than the value in register `xs2`, where both sources are treated as signed numbers, else 0 is written to `xd`.
slt xd, xs1, xs2
Pseudo-Instructionsltz xd, xs1equalsslt xd, xs1, 0whenxs2 == 0
Pseudo-Instructionsgtz xd, xs2equalsslt xd, 0, xs2whenxs1 == 0
Type: R