diff options
author | 2014-03-12 21:43:05 +0000 | |
---|---|---|
committer | 2014-03-12 21:43:05 +0000 | |
commit | ff808d1af4d0c38929d94bd626f10c7431f068e5 (patch) | |
tree | 4ed2e6772a9775ecb15a682c1f2bc38b22e419b3 /src/emu/machine/i8251.c | |
parent | 1bb1db438450ceffe0d1513c6c29d2311c70e78a (diff) |
i8089: channel priorities [Carl]
i8251: fix rx (nw)
z80dart: fix rx (nw)
imd_dsk: fix free array crash (nw)
(mess) isbc_215g: hdd seeks (nw)
Diffstat (limited to 'src/emu/machine/i8251.c')
-rw-r--r-- | src/emu/machine/i8251.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/machine/i8251.c b/src/emu/machine/i8251.c index baad70314b2..ff11f7d3848 100644 --- a/src/emu/machine/i8251.c +++ b/src/emu/machine/i8251.c @@ -686,7 +686,7 @@ void i8251_device::device_timer(emu_timer &timer, device_timer_id id, int param, WRITE_LINE_MEMBER(i8251_device::write_rxd) { m_rxd = state; - device_serial_interface::rx_w(state); +// device_serial_interface::rx_w(state); } WRITE_LINE_MEMBER(i8251_device::write_cts) |