forgot to remove resolved read handler. (nw)

This commit is contained in:
smf- 2013-12-23 12:33:42 +00:00
parent 02e1e04274
commit 50080b3f1c
2 changed files with 1 additions and 5 deletions

View File

@ -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());
}

View File

@ -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;