| Purpose: | To perform the logical exclusive OR of two integers | ||||||||||||||||||
| Format: | opcode mask.rx, dst.mx opcode mask.rx, src.rx, dst.wx  | 
||||||||||||||||||
| Operation: | dst <- dst XOR mask; dst <- src XOR mask;  | 
||||||||||||||||||
| Condition Codes:  | 
		N <- dst LSS 0; Z <- dst EQL 0; V <- 0; C <- C;  | 
||||||||||||||||||
| Exceptions: | None | ||||||||||||||||||
| Opcodes: | 
			
  | 
||||||||||||||||||
| Description: | In the 2 operand format, the mask operand is XORed with the destination operand and the destination operand is replaced by the result.
 In the 3 operand format, the mask is XORed with the source operand and the destination operand is replaced by the result.  |