mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2025-01-03 09:29:50 +00:00
Correct some missed 6809 fixes
This commit is contained in:
parent
2b8513fd37
commit
4f4d234ed5
@ -340,9 +340,9 @@ TEST_CASE("Add Memory to Accumulator", "[ADD][ADDA][ADDB][ADDD]") {
|
||||
REQUIRE(cpu.A() == 0xe0);
|
||||
REQUIRE(cpu.B() == 0x00);
|
||||
REQUIRE(cpu.negative() != 0);
|
||||
REQUIRE(cpu.zero()) == 0);
|
||||
REQUIRE(cpu.zero() == 0);
|
||||
REQUIRE(cpu.overflow() != 0);
|
||||
REQUIRE(cpu.carry()) == 0);
|
||||
REQUIRE(cpu.carry() == 0);
|
||||
REQUIRE(cpu.cycles() == 4);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user