diff options
| author | 2013-12-23 11:27:38 +0000 | |
|---|---|---|
| committer | 2013-12-23 11:27:38 +0000 | |
| commit | 9576aea93bf90910683e4b9497023a8a4e47b262 (patch) | |
| tree | bdfcff557c95395587395a3893a35c0f64b04a07 | |
| parent | 5250fc27810cef40fd3bb0793bc4de5953640295 (diff) | |
forgot to actually remove the rxd callback variable. (nw)
| -rw-r--r-- | src/emu/machine/mos6551.c | 6 | ||||
| -rw-r--r-- | src/emu/machine/mos6551.h | 1 |
2 files changed, 1 insertions, 6 deletions
diff --git a/src/emu/machine/mos6551.c b/src/emu/machine/mos6551.c index e61dcada5c4..7c89f9e6f7c 100644 --- a/src/emu/machine/mos6551.c +++ b/src/emu/machine/mos6551.c @@ -58,7 +58,6 @@ mos6551_device::mos6551_device(const machine_config &mconfig, const char *tag, d : device_t(mconfig, MOS6551, "MOS6551", tag, owner, clock, "mos6551", __FILE__), device_serial_interface(mconfig, *this), m_irq_handler(*this), - m_read_rxd(*this), m_txd_handler(*this), m_rts_handler(*this), m_dtr_handler(*this), @@ -158,10 +157,7 @@ void mos6551_device::tra_complete() void mos6551_device::rcv_callback() { - if (m_read_rxd.isnull()) - receive_register_update_bit(get_in_data_bit()); - else - receive_register_update_bit(m_read_rxd()); + receive_register_update_bit(get_in_data_bit()); } diff --git a/src/emu/machine/mos6551.h b/src/emu/machine/mos6551.h index 5292faa0ac0..975bcaccb66 100644 --- a/src/emu/machine/mos6551.h +++ b/src/emu/machine/mos6551.h @@ -167,7 +167,6 @@ protected: void update_serial(); devcb2_write_line m_irq_handler; - devcb2_read_line m_read_rxd; devcb2_write_line m_txd_handler; devcb2_write_line m_rts_handler; devcb2_write_line m_dtr_handler; |
