slti

Set on less than immediate

This instruction is defined by:

Encoding

svg

Synopsis

Places the value 1 in register rd if register rs1 is less than the sign-extended immediate when both are treated as signed numbers, else 0 is written to rd.

Access

M

HS

U

VS

VU

Always

Always

Always

Always

Always

Decode Variables

Bits<12> imm = $encoding[31:20];
Bits<5> rs1 = $encoding[19:15];
Bits<5> rd = $encoding[11:7];

Execution

  • Pruned, XLEN == 64

  • Original

X[rd] = ($signed(X[rs1]) < $signed(imm)) ? '1 : '0;
X[rd] = ($signed(X[rs1]) < $signed(imm)) ? '1 : '0;