diff options
author | 2013-12-22 12:00:26 +0000 | |
---|---|---|
committer | 2013-12-22 12:00:26 +0000 | |
commit | b4c7b67ff9a1b12dd414502864cee66628b3bd19 (patch) | |
tree | d056e8e53b0778cde38a817def2c19eded32c18d /src/emu/bus/c64/midi_namesoft.h | |
parent | 8b0c23f055c9d6869f3a909072941f5c9025bb50 (diff) |
replaced read rx/cts/dcd callbacks in ACIA6850 write write handlers, which allows multiple chips to be connected together without using glue methods. [smf]
Diffstat (limited to 'src/emu/bus/c64/midi_namesoft.h')
-rw-r--r-- | src/emu/bus/c64/midi_namesoft.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/emu/bus/c64/midi_namesoft.h b/src/emu/bus/c64/midi_namesoft.h index 8a22d84c39d..f5d54f6337f 100644 --- a/src/emu/bus/c64/midi_namesoft.h +++ b/src/emu/bus/c64/midi_namesoft.h @@ -41,9 +41,6 @@ public: DECLARE_WRITE_LINE_MEMBER( acia_irq_w ); DECLARE_WRITE_LINE_MEMBER( midi_rx_w ); - DECLARE_READ_LINE_MEMBER( rx_in ); - DECLARE_WRITE_LINE_MEMBER( tx_out ); - protected: // device-level overrides virtual void device_start(); @@ -55,9 +52,6 @@ protected: private: required_device<acia6850_device> m_acia; - required_device<serial_port_device> m_mdout; - - int m_rx_state; }; |