summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Olivier Galibert <galibert@pobox.com>2020-03-11 21:13:11 +0100
committer Olivier Galibert <galibert@pobox.com>2020-03-11 21:13:11 +0100
commit6fcded4971aad279c99b2ef122e28da6e5ae1450 (patch)
tree6a58361b731a88d01a1c78894b0177ccb8685934
parent61c775bb74f91ff1d3ec9874c855156f69527506 (diff)
Woops (nw)
-rw-r--r--src/devices/sound/k054539.cpp2
-rw-r--r--src/mame/drivers/konamigx.cpp4
2 files changed, 1 insertions, 5 deletions
diff --git a/src/devices/sound/k054539.cpp b/src/devices/sound/k054539.cpp
index 42bc943bee3..b824650544d 100644
--- a/src/devices/sound/k054539.cpp
+++ b/src/devices/sound/k054539.cpp
@@ -421,7 +421,7 @@ void k054539_device::write(offs_t offset, u8 data)
case 0x227:
{
attotime period = attotime::from_hz((float)(38 + data) * (clock()/384.0f/14400.0f)) / 2.0f;
- logerror("TIMER %02x %g\n", data, (float)(38 + data) * (clock()/384.0f/14400.0f));
+
m_timer->adjust(period, 0, period);
m_timer_state = 0;
diff --git a/src/mame/drivers/konamigx.cpp b/src/mame/drivers/konamigx.cpp
index 039e1e92bb5..bece7338b8b 100644
--- a/src/mame/drivers/konamigx.cpp
+++ b/src/mame/drivers/konamigx.cpp
@@ -3694,10 +3694,6 @@ ROM_END
MACHINE_START_MEMBER(konamigx_state,konamigx)
{
- m_soundcpu->space(AS_PROGRAM).install_write_tap(0x200000, 0x2004ff, "snd", [this](offs_t offset, u16 &data, u16 mem_mask) {
- logerror("%10d write %06x %04x %04x\n", machine().time().as_ticks(18432000), offset, data, mem_mask);
- });
-
m_lamp.resolve();
save_item(NAME(m_sound_ctrl));