risc-v

Definition

xor (RISC-V)

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

xor a, b, c

Equivalent C code:

a = b ^ c