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 b0c26d00181..3428defbbfd 100644
--- a/src/devices/cpu/m68000/m68kcpu.cpp
+++ b/src/devices/cpu/m68000/m68kcpu.cpp
@@ -768,6 +768,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;
@@ -792,7 +794,7 @@ void m68000_base_device::execute_run()
return;
}
}
-
+#endif
/* Main loop. Keep going until we run out of clock cycles */
while (m_remaining_cycles > 0)