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