From e1a410bf3d9a54835e88ee24d5127ece51ed2823 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Mon, 19 Jul 2021 20:54:32 -0400 Subject: [PATCH] Further mildly increases logging. --- Machines/Amiga/Amiga.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Machines/Amiga/Amiga.cpp b/Machines/Amiga/Amiga.cpp index d2d3ca5c9..faf2b6f51 100644 --- a/Machines/Amiga/Amiga.cpp +++ b/Machines/Amiga/Amiga.cpp @@ -95,6 +95,7 @@ class ConcreteMachine: // directly to the chip enables. if((address & 0xe0'0000) == 0xa0'0000) { const int reg = address >> 8; + LOG("CIA access: " << PADHEX(4) << *cycle.address); if(cycle.operation & Microcycle::Read) { uint16_t result = 0xffff; @@ -203,6 +204,7 @@ class ConcreteMachine: } else { // This'll do for open bus, for now. cycle.set_value16(0xffff); + LOG("Unmapped access to " << PADHEX(4) << *cycle.address); } } } else {