Chip8.Interpreter.Instruction.XOR (chip8 v0.1.0)
Calculates the bitwise XOR between two operands.
The result of this operation is saved in the first operand. An exclusive OR compares the corresponding bits of the values, when neither of the bits are the same it results in a 1, and 0 otherwise.
variants
Variants
Opcode | Mnemonic | Description |
---|---|---|
8xy3 | XOR Vx, Vy | Set Vx = Vx XOR Vy . |