risc-v

Definition

bne (RISC-V)

Branches to the target address if the values of registers b and c are not equal.

bne b, c, offset

Equivalent C code:

if (b != c) goto target;