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

OpcodeMnemonicDescription
8xy3XOR Vx, VySet Vx = Vx XOR Vy.