summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/bigevglf.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/bigevglf.c')
-rw-r--r--src/mame/machine/bigevglf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/machine/bigevglf.c b/src/mame/machine/bigevglf.c
index b3db98bb56f..5ea00e778b8 100644
--- a/src/mame/machine/bigevglf.c
+++ b/src/mame/machine/bigevglf.c
@@ -36,7 +36,7 @@ WRITE8_MEMBER(bigevglf_state::bigevglf_68705_port_b_w)
if ((m_ddr_b & 0x02) && (~m_port_b_out & 0x02) && (data & 0x02)) /* positive going transition of the clock */
{
- device_set_input_line(m_mcu, 0, CLEAR_LINE);
+ m_mcu->execute().set_input_line(0, CLEAR_LINE);
m_main_sent = 0;
}
@@ -81,7 +81,7 @@ WRITE8_MEMBER(bigevglf_state::bigevglf_mcu_w)
m_port_a_in = data;
m_main_sent = 1;
- device_set_input_line(m_mcu, 0, ASSERT_LINE);
+ m_mcu->execute().set_input_line(0, ASSERT_LINE);
}