summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/machine/terminal.h
diff options
context:
space:
mode:
author cracyc <cracyc@users.noreply.github.com>2013-06-30 18:00:34 +0000
committer cracyc <cracyc@users.noreply.github.com>2013-06-30 18:00:34 +0000
commit285531623a23f472ba093fe4a2e828c6e8d011bc (patch)
treed5d00549fc0652d05f90ba9b940183dd1ef8bc0c /src/mess/machine/terminal.h
parenta46daa5a15e840ffc542a501a935ed276bcc83dd (diff)
diserial: add attotime and clock-div forms of set_rate and rename check_for_start to rx_w (nw)
debugqt: don't hide cursor while in debugger (nw) (mess) ibmpc: xt floppies for the xt (nw)
Diffstat (limited to 'src/mess/machine/terminal.h')
-rw-r--r--src/mess/machine/terminal.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mess/machine/terminal.h b/src/mess/machine/terminal.h
index b450b90921e..45e8c76cf5f 100644
--- a/src/mess/machine/terminal.h
+++ b/src/mess/machine/terminal.h
@@ -94,7 +94,7 @@ class serial_terminal_device :
public:
serial_terminal_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
- DECLARE_WRITE_LINE_MEMBER(rx_w) { m_tbit = state; check_for_start(state); }
+ DECLARE_WRITE_LINE_MEMBER(rx_w) { m_tbit = state; device_serial_interface::rx_w(state); }
DECLARE_READ_LINE_MEMBER(tx_r);
virtual void tx(UINT8 state) { rx_w(state); }
virtual ioport_constructor device_input_ports() const;