risc-v

Definition

beq (RISC-V)

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

beq b, c, offset

Equivalent C code:

if (b == c) goto target;