mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-19 08:31:11 +00:00
Don't test undefined flags.
This commit is contained in:
parent
8e0fa3bb5f
commit
e1abf431cb
@ -734,7 +734,12 @@
|
|||||||
|
|
||||||
const auto state = self.machine->get_processor_state();
|
const auto state = self.machine->get_processor_state();
|
||||||
XCTAssertEqual(state.registers.data[1], 0x4768f231);
|
XCTAssertEqual(state.registers.data[1], 0x4768f231);
|
||||||
XCTAssertEqual(state.registers.status & ConditionCode::AllConditions, ConditionCode::Extend | ConditionCode::Negative | ConditionCode::Overflow);
|
|
||||||
|
// N and Z are officially undefined upon DIVS overflow, and I've found no
|
||||||
|
// other relevant information.
|
||||||
|
XCTAssertEqual(
|
||||||
|
state.registers.status & (ConditionCode::Extend | ConditionCode::Overflow | ConditionCode::Carry),
|
||||||
|
ConditionCode::Extend | ConditionCode::Overflow);
|
||||||
XCTAssertEqual(20, self.machine->get_cycle_count());
|
XCTAssertEqual(20, self.machine->get_cycle_count());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user