summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/mpu4drvr.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/mpu4drvr.c')
-rw-r--r--src/mame/drivers/mpu4drvr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/mpu4drvr.c b/src/mame/drivers/mpu4drvr.c
index 9a7792554bc..1b57b5346cb 100644
--- a/src/mame/drivers/mpu4drvr.c
+++ b/src/mame/drivers/mpu4drvr.c
@@ -272,12 +272,12 @@ static void update_mpu68_interrupts(void)
/* set the new state of the IRQ lines */
if (newstate)
{
- LOG(("68k IRQ, %x\n", newstate));
+ LOGSTUFF(("68k IRQ, %x\n", newstate));
cpunum_set_input_line(1, newstate, ASSERT_LINE);
}
else
{
- LOG(("68k IRQ Clear, %x\n", newstate));
+ LOGSTUFF(("68k IRQ Clear, %x\n", newstate));
cpunum_set_input_line(1, 7, CLEAR_LINE);
}
}