risc-v

Definition

or (RISC-V)

Performs a bitwise OR operation between the values of registers b and c, and stores the result in register a.

or a, b, c

Equivalent C code:

a = b | c