summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author smf- <smf-@users.noreply.github.com>2013-12-23 11:24:51 +0000
committer smf- <smf-@users.noreply.github.com>2013-12-23 11:24:51 +0000
commit5250fc27810cef40fd3bb0793bc4de5953640295 (patch)
treebdcd1edead5ef54808374b71cf7e1e53876e2fb4
parent5b2f60d1fe14985d9af309f1accd29ca248e273b (diff)
changed write_rx to update the correct variable (nw)
-rw-r--r--src/emu/machine/6850acia.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/machine/6850acia.c b/src/emu/machine/6850acia.c
index fb1291857f0..2c44af8b513 100644
--- a/src/emu/machine/6850acia.c
+++ b/src/emu/machine/6850acia.c
@@ -177,7 +177,7 @@ void acia6850_device::device_reset()
DECLARE_WRITE_LINE_MEMBER( acia6850_device::write_rx )
{
- m_rts = state;
+ m_rxd = state;
}
DECLARE_WRITE_LINE_MEMBER( acia6850_device::write_dcd )