diff options
Diffstat (limited to 'src/devices/cpu/clipper/clipper.cpp')
-rw-r--r-- | src/devices/cpu/clipper/clipper.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/devices/cpu/clipper/clipper.cpp b/src/devices/cpu/clipper/clipper.cpp index aff0b589a45..32c1d0dee82 100644 --- a/src/devices/cpu/clipper/clipper.cpp +++ b/src/devices/cpu/clipper/clipper.cpp @@ -206,14 +206,15 @@ void clipper_device::execute_run() while (m_icount > 0) { - debugger_instruction_hook(m_pc); - if (m_wait) { + debugger_wait_hook(); m_icount = 0; continue; } + debugger_instruction_hook(m_pc); + // fetch and decode an instruction if (decode_instruction()) { |