summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine
diff options
context:
space:
mode:
author Ryan Holtz <ryan.holtz@arrowheadgs.com>2020-08-05 19:00:30 +0200
committer Ryan Holtz <ryan.holtz@arrowheadgs.com>2020-08-06 20:16:22 +0200
commit30def4d9ac7eeabb80da1b36477af1c7b75cbc05 (patch)
tree17dae7986fcb44b48907d1fe9e305cc4d911468f /src/devices/machine
parente404f347c65ade92c4dd9b57b05c8ac2bbc7ad14 (diff)
-starfire: Added left/right mixer and left/right boom, but the booms don't trigger for some reason.
Diffstat (limited to 'src/devices/machine')
-rw-r--r--src/devices/machine/netlist.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/devices/machine/netlist.cpp b/src/devices/machine/netlist.cpp
index b98ffddbe1e..c4c76dcb45f 100644
--- a/src/devices/machine/netlist.cpp
+++ b/src/devices/machine/netlist.cpp
@@ -356,7 +356,6 @@ void netlist_mame_analog_input_device::write(const double val)
m_value_for_device_timer = val * m_mult + m_offset;
if (m_value_for_device_timer != (*m_param)())
{
- LOGDEBUG("write %s\n", this->tag());
synchronize(0, 0, &m_value_for_device_timer);
}
}
@@ -382,9 +381,9 @@ void netlist_mame_logic_input_device::write(const uint32_t val)
const uint32_t v = (val >> m_shift) & 1;
if (v != (*m_param)())
{
- LOGDEBUG("write %s\n", this->tag());
+ printf("write %s: %d\n", this->tag(), val);
synchronize(0, v);
-}
+ }
}
void netlist_mame_int_input_device::device_timer(emu_timer &timer, device_timer_id id, int param, void *ptr)