summaryrefslogtreecommitdiffstats
path: root/src/devices/cpu/m68000/m68kcpu.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/m68000/m68kcpu.cpp')
-rw-r--r--src/devices/cpu/m68000/m68kcpu.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/devices/cpu/m68000/m68kcpu.cpp b/src/devices/cpu/m68000/m68kcpu.cpp
index 896a046cd77..f36a166e0cc 100644
--- a/src/devices/cpu/m68000/m68kcpu.cpp
+++ b/src/devices/cpu/m68000/m68kcpu.cpp
@@ -859,6 +859,8 @@ void m68000_base_device::execute_run()
{
/* Return point if we had an address error */
check_address_error:
+// HBMAME temp hack, to see if this allows us to run chinese hacks
+#if 0
if (m_address_error==1)
{
m_address_error = 0;
@@ -883,7 +885,7 @@ void m68000_base_device::execute_run()
return;
}
}
-
+#endif
/* Main loop. Keep going until we run out of clock cycles */
while (m_icount > 0)