summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/68307.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/68307.cpp')
-rw-r--r--src/devices/machine/68307.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/devices/machine/68307.cpp b/src/devices/machine/68307.cpp
index 121a729b1fd..ca98bbfa85b 100644
--- a/src/devices/machine/68307.cpp
+++ b/src/devices/machine/68307.cpp
@@ -225,7 +225,8 @@ void m68307_cpu_device::licr2_interrupt()
uint8_t m68307_cpu_device::int_ack(offs_t offset)
{
uint8_t type = m_m68307SIM->get_int_type(this, offset);
- logerror("Interrupt acknowledged: level %d, type %01X\n", offset, type);
+ if (!machine().side_effects_disabled())
+ logerror("Interrupt acknowledged: level %d, type %01X\n", offset, type);
// UART provides its own vector
if (type == 0x0c)