risc-v

Definition

slt (RISC-V)

Sets register a to 1 if the value in register b is less than the value in register c, and to 0 otherwise.

slt a, b, c

Equivalent C code:

a = (b < c)