Merge branch 'catch' of github.com:AnonymusRaccoon/ComSquare into catch

This commit is contained in:
Zoe Roux
2021-07-06 23:06:07 +02:00

View File

@@ -64,7 +64,7 @@ TEST_CASE("vmadd_full_data_check_ram PPU_write_2", "[PPU_write_2]")
snes.bus.write(0x2119, 0xFF);
REQUIRE(snes.ppu._registers._vmadd.vmadd == 3);
REQUIRE(snes.ppu.vram.read(4) == 0xFF);
REQUIRE(snes.ppu.vram.read(5) == 0xF);
REQUIRE(snes.ppu.vram.read(5) == 0xFF);
}
TEST_CASE("vmadd_full_high_byte_null PPU_write_2", "[PPU_write_2]")