From fab7ff5cf0e90f44b7cb3f96c08cfb61abd2a1be Mon Sep 17 00:00:00 2001 From: Andrew Keeton Date: Sun, 16 Nov 2014 21:11:22 -0500 Subject: [PATCH] Add exclusive_or_test(). --- src/machine.rs | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/src/machine.rs b/src/machine.rs index e85837e..159206f 100644 --- a/src/machine.rs +++ b/src/machine.rs @@ -1194,4 +1194,34 @@ fn compare_with_y_register_test() { }, instruction::LDY ); +} + +#[test] +fn exclusive_or_test() { + let mut machine = Machine::new(); + + for a_before in range(0u8, 255u8) { + for val in range(0u8, 255u8) { + machine.execute_instruction( + (instruction::LDA, instruction::UseImmediate(a_before)) + ); + + machine.exclusive_or(val); + + let a_after = a_before ^ val; + assert_eq!(machine.registers.accumulator, a_after as i8); + + if a_after == 0 { + assert!(machine.registers.status.contains(PS_ZERO)); + } else { + assert!(!machine.registers.status.contains(PS_ZERO)); + } + + if (a_after as i8) < 0 { + assert!(machine.registers.status.contains(PS_NEGATIVE)); + } else { + assert!(!machine.registers.status.contains(PS_NEGATIVE)); + } + } + } } \ No newline at end of file