Complete 8086 instruction set[XOR]

XOR

Operands: REG, memory memory, REG REG, REG memory, immediate REG, immediate Logical XOR (Exclusive OR) between all bits of two operands. Result is stored in first operand. These rules apply: 1 XOR 1 = 0 1 XOR 0 = 1 0 XOR 1 = 1 0 XOR 0 = 0 Example: MOV AL, 00000111b XOR AL, 00000010b ; AL = 00000101b RET Flags: C Z S O P A 0 r r 0 r ?