fixed write_txc (nw)

This commit is contained in:
smf- 2014-02-21 21:43:08 +00:00
parent 1d2992260e
commit 8f93a2bd4c
2 changed files with 2 additions and 10 deletions

View File

@ -717,13 +717,6 @@ READ8_MEMBER(i8251_device::data_r)
return m_data;
}
void i8251_device::device_timer(emu_timer &timer, device_timer_id id, int param, void *ptr)
{
device_serial_interface::device_timer(timer, id, param, ptr);
}
WRITE_LINE_MEMBER(i8251_device::write_rxd)
{
if (state)
@ -777,7 +770,7 @@ WRITE_LINE_MEMBER(i8251_device::write_txc)
{
m_txc = state;
if (m_txc)
receive_clock();
if (!m_txc)
transmit_clock();
}
}

View File

@ -80,7 +80,6 @@ protected:
// device-level overrides
virtual void device_start();
virtual void device_reset();
virtual void device_timer(emu_timer &timer, device_timer_id id, int param, void *ptr);
void update_rx_ready();
void update_tx_ready();