summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author arbee <rb6502@users.noreply.github.com>2017-12-22 13:45:40 -0500
committer arbee <rb6502@users.noreply.github.com>2017-12-22 13:45:40 -0500
commit80ee9f3d1a0dac8bdba46035683012c11e0b0a58 (patch)
tree42f9b2a39cbe0d18da057a0f2b44bf1ee56bc23f
parent5a3d1c800f5cf4ca3f099ada83c45cf65df9d7bc (diff)
i8087: fix regression in Fanuc driver pending further investigation. [Andrey Merkulov]
-rw-r--r--src/devices/machine/i8087.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/machine/i8087.cpp b/src/devices/machine/i8087.cpp
index 9884f052bed..15d5e51bea2 100644
--- a/src/devices/machine/i8087.cpp
+++ b/src/devices/machine/i8087.cpp
@@ -267,7 +267,7 @@ void i8087_device::execute()
return;
}
m_busy_handler(0);
- if(!((m_sw & ~m_cw) & 0x3f)) // no exceptions
+// if(!((m_sw & ~m_cw) & 0x3f)) // no exceptions
m_timer->adjust(attotime::from_hz((m_icount ? m_icount : 1) * clock()));
}