risc-v

Definition

blt (RISC-V)

Branches to the target address if register b is less than register c, using signed comparison.

blt b, c, offset

Equivalent C code:

if (b < c) goto target;