risc-v

Definition

and (RISC-V)

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

and a, b, c

Equivalent C code:

a = b & c