1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-11-22 12:33:29 +00:00

Fix debug builds.

This commit is contained in:
Thomas Harte 2022-06-06 15:26:15 -04:00
parent 9818c7e78c
commit 56aa182fb6

View File

@ -96,7 +96,7 @@ class ConcreteMachine:
// Check for assertion of reset.
if(cycle.operation & Microcycle::Reset) {
memory_.reset();
LOG("Reset; PC is around " << PADHEX(8) << mc68000_.get_state().program_counter);
LOG("Reset; PC is around " << PADHEX(8) << mc68000_.get_state().registers.program_counter);
}
// Autovector interrupts.