mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2025-04-04 13:33:08 +00:00
Add test for BITA immediate.
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
This commit is contained in:
parent
cf32f37fc3
commit
9296eaf954
@ -123,3 +123,22 @@ TEST_CASE("Shift Accumulator or Memory Byte Right", "[ASR][ASRA]") {
|
||||
REQUIRE(cpu.cycles() == 2);
|
||||
}
|
||||
}
|
||||
|
||||
TEST_CASE("Bit Test", "[BIT][BITA]") {
|
||||
|
||||
Board board;
|
||||
board.initialise();
|
||||
auto& cpu = board.CPU();
|
||||
cpu.step(); // Step over the reset
|
||||
|
||||
SECTION("Immediate (byte)") {
|
||||
board.poke(0, 0x85);
|
||||
board.poke(1, 0xe0);
|
||||
cpu.A() = 0xa6;
|
||||
cpu.step();
|
||||
REQUIRE(cpu.A() == 0xa6);
|
||||
REQUIRE((cpu.CC() & EightBit::mc6809::ZF) == 0);
|
||||
REQUIRE((cpu.CC() & EightBit::mc6809::NF) != 0);
|
||||
REQUIRE(cpu.cycles() == 2);
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user