summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/machine/mos6551.c
diff options
context:
space:
mode:
author smf- <smf-@users.noreply.github.com>2013-12-23 11:27:38 +0000
committer smf- <smf-@users.noreply.github.com>2013-12-23 11:27:38 +0000
commit9576aea93bf90910683e4b9497023a8a4e47b262 (patch)
treebdfcff557c95395587395a3893a35c0f64b04a07 /src/emu/machine/mos6551.c
parent5250fc27810cef40fd3bb0793bc4de5953640295 (diff)
forgot to actually remove the rxd callback variable. (nw)
Diffstat (limited to 'src/emu/machine/mos6551.c')
-rw-r--r--src/emu/machine/mos6551.c6
1 files changed, 1 insertions, 5 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());
}