You copied the Doc URL to your clipboard.
EOR (immediate)
Bitwise Exclusive OR (immediate).
Syntax
EOR
Wd|WSP
, Wn
, #imm
; 32-bit
EOR
Xd|SP
, Xn
, #imm
; 64-bit
Where:
Wd|WSP
- Is the 32-bit name of the destination general-purpose register or stack pointer.
Wn
- Is the 32-bit name of the general-purpose source register.
imm
- The bitmask immediate.
Xd|SP
- Is the 64-bit name of the destination general-purpose register or stack pointer.
Xn
- Is the 64-bit name of the general-purpose source register.
Operation
Bitwise Exclusive OR (immediate) performs a bitwise Exclusive OR of a register value and an immediate value, and writes the result to the destination register.
, where R
d = R
n EOR imm
is either R
W
or X
.