xori $dest, $src1, imm
Take the logical exclusive or of a register and an immediate and store the result in a register.
Format
This is an RI format instrucion.
31 - 26 |
25 - 21 |
20 - 16 |
15 - 0 |
010110 |
dest |
src1 |
Immediate |
Functional Description
The xori performs a logical exclusive or of register src1 to a zero-extended immediate, and stores the result in register dest.
dest = src1 xor ZERO_EXT(imm);
Side Effects
None
Processor Mode
This is a user-level instruction.
Last modified: Fri Feb 23 02:56:02 CST 2001