Function xor

Source
pub fn xor(cpu: &mut Cpu, scheme: InstructionScheme) -> OperationResult<()>
Expand description

§0x0404 xor:target [start:end]

§Target

  • The register to store the result value.

§Arguments

  • The register range onto apply the operator.

§Operation

  • REG[$target] = 0x00... xor REG[start..end]...

§Errors