From 50080b3f1c8497120a561d43f85978cd581d0976 Mon Sep 17 00:00:00 2001 From: smf- Date: Mon, 23 Dec 2013 12:33:42 +0000 Subject: [PATCH] forgot to remove resolved read handler. (nw) --- src/emu/machine/z80sti.c | 5 +---- src/emu/machine/z80sti.h | 1 - 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/src/emu/machine/z80sti.c b/src/emu/machine/z80sti.c index e6d0742d6c3..b4bc9735459 100644 --- a/src/emu/machine/z80sti.c +++ b/src/emu/machine/z80sti.c @@ -242,10 +242,7 @@ void z80sti_device::tra_complete() void z80sti_device::rcv_callback() { - if (m_in_si_func.isnull()) - receive_register_update_bit(get_in_data_bit()); - else - receive_register_update_bit(m_in_si_func()); + receive_register_update_bit(get_in_data_bit()); } diff --git a/src/emu/machine/z80sti.h b/src/emu/machine/z80sti.h index d3d522fa23f..8437b8ab692 100644 --- a/src/emu/machine/z80sti.h +++ b/src/emu/machine/z80sti.h @@ -207,7 +207,6 @@ private: // device callbacks devcb_resolved_read8 m_in_gpio_func; devcb_resolved_write8 m_out_gpio_func; - devcb_resolved_read_line m_in_si_func; devcb_resolved_write_line m_out_so_func; devcb_resolved_write_line m_out_timer_func[4]; devcb_resolved_write_line m_out_int_func;