diff options
author | 2013-02-12 20:43:29 +0000 | |
---|---|---|
committer | 2013-02-12 20:43:29 +0000 | |
commit | 92ac52985259dca05b22f60a10365c16d51d7adc (patch) | |
tree | b2d7002a2166a1260db2bb146f8490fd698871b4 /src/emu/machine/mos6551.c | |
parent | d2086017b31bc400b42558ac64f9648d44a3afc0 (diff) |
(MESS) c64: Connected the Turbo232/SwiftLink cartridges' RS-232 port to the 6551 ACIA. (nw)
Diffstat (limited to 'src/emu/machine/mos6551.c')
-rw-r--r-- | src/emu/machine/mos6551.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/emu/machine/mos6551.c b/src/emu/machine/mos6551.c index 1ad74f3dafc..63436791ddd 100644 --- a/src/emu/machine/mos6551.c +++ b/src/emu/machine/mos6551.c @@ -346,6 +346,16 @@ void mos6551_device::set_rxc(int clock) //------------------------------------------------- +// rxd_w - receive data write +//------------------------------------------------- + +WRITE_LINE_MEMBER( mos6551_device::rxd_w ) +{ + check_for_start(state); +} + + +//------------------------------------------------- // rxc_w - receive clock write //------------------------------------------------- |