diff --git a/Machines/Atari/ST/AtariST.cpp b/Machines/Atari/ST/AtariST.cpp index 7d7f650ba..322d35c7e 100644 --- a/Machines/Atari/ST/AtariST.cpp +++ b/Machines/Atari/ST/AtariST.cpp @@ -30,6 +30,8 @@ #include "../../../ClockReceiver/ForceInline.hpp" #include "../../../Outputs/Speaker/Implementation/LowpassSpeaker.hpp" + +#define LOG_PREFIX "[ST] " #include "../../../Outputs/Log.hpp" #include "../../Utility/MemoryPacker.hpp" @@ -151,6 +153,11 @@ class ConcreteMachine: // Advance time. advance_time(cycle.length); + // Check for assertion of reset. + if(cycle.operation & Microcycle::Reset) { + LOG("Unhandled Reset"); + } + // A null cycle leaves nothing else to do. if(!(cycle.operation & (Microcycle::NewAddress | Microcycle::SameAddress))) return HalfCycles(0);