mirror of
https://github.com/TomHarte/CLK.git
synced 2025-01-24 02:30:54 +00:00
Increase logging.
This commit is contained in:
parent
77a8ddb95c
commit
e3bb9fc1d7
@ -134,7 +134,7 @@ class ConcreteMachine:
|
||||
if(cycle.operation & Microcycle::Read) {
|
||||
cycle.set_value16(0xffff);
|
||||
}
|
||||
LOG("Unmapped access to " << PADHEX(4) << *cycle.address);
|
||||
LOG("Unmapped " << (cycle.operation & Microcycle::Read ? "read from " : "write to ") << PADHEX(4) << *cycle.address << " of " << cycle.value16());
|
||||
}
|
||||
}
|
||||
} else {
|
||||
|
@ -166,6 +166,7 @@ void Chipset::perform(const CPU::MC68000::Microcycle &cycle) {
|
||||
case Read(0x110): case Read(0x112): case Read(0x114): case Read(0x116):
|
||||
case Read(0x118): case Read(0x11a):
|
||||
cycle.set_value16(0xffff);
|
||||
LOG("Invalid read at " << PADHEX(6) << *cycle.address);
|
||||
break;
|
||||
|
||||
// Blitter.
|
||||
|
Loading…
x
Reference in New Issue
Block a user