summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/minx/minx.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/minx/minx.cpp')
-rw-r--r--src/devices/cpu/minx/minx.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/devices/cpu/minx/minx.cpp b/src/devices/cpu/minx/minx.cpp
index 28b1bcb5670..59c47039f13 100644
--- a/src/devices/cpu/minx/minx.cpp
+++ b/src/devices/cpu/minx/minx.cpp
@@ -41,7 +41,7 @@ TODO:
- Add support for O and C flags in NEG8 instruction
- Verify MUL (CE D8) and DIV (CE D9)
- Doublecheck behaviour of CMPN instructions ( CF 60 .. CF 63 )
-- DIV (CE D9) division by zero handling - is supposed to raise a EX4 exception. A real Pokemini unit will freeze. MAME currently will crash.
+- DIV (CE D9) division by zero handling - is supposed to raise a EX4 exception. A real Pokemini unit will freeze.
*/
@@ -212,6 +212,7 @@ void minx_cpu_device::execute_run()
if ( m_halted )
{
+ debugger_wait_hook();
m_icount -= insnminx_cycles_CE[0xAE];
}
else