risc-v

Definition

bge (RISC-V)

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

bge b, c, offset

Equivalent C code:

if (b >= c) goto target;