1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-10-02 19:54:35 +00:00

Adds an extra LOG to track the memory map as a potential cause of emulation failure.

This commit is contained in:
Thomas Harte 2018-10-18 21:48:37 -04:00
parent 57f03e660c
commit 10d9cbdeb1

View File

@ -173,6 +173,7 @@ class ConcreteMachine:
}
if(write_pointers_[address >> 10]) write_pointers_[address >> 10][address & 1023] = *cycle.value;
else LOG("Ignored write to ROM");
break;
case CPU::Z80::PartialMachineCycle::Input: