BINVI
Bit Invert Immediate
BINVI rd, rs1, imm
Inverts (toggles) a single bit in rs1 at the index specified by an immediate.
Details
BINVI inverts the single bit of rs1 selected by the immediate, writing the result to rd.
Pseudocode Operation
R[rd] = R[rs1] ^ (1 << imm);
Example
BINVI x10, x11, 7
Encoding
Binary Layout
0110100
31:25
imm
rs1
24:20
001
19:17
rd
16:12
0010011
11:5
Operands
-
rd
Destination register (integer) -
rs1
Source -
imm
Index