summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/dl11.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/dl11.h')
-rw-r--r--src/devices/machine/dl11.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/devices/machine/dl11.h b/src/devices/machine/dl11.h
index 51b297a34b4..d3120f5e6af 100644
--- a/src/devices/machine/dl11.h
+++ b/src/devices/machine/dl11.h
@@ -2,7 +2,7 @@
// copyright-holders:Sergey Svishchev
/***************************************************************************
- DEC DL11-type SLU (serial line unit)
+ DEC DL11-type SLU (serial line unit)
***************************************************************************/
@@ -43,10 +43,10 @@ public:
uint16_t read(offs_t offset);
void write(offs_t offset, uint16_t data, uint16_t mem_mask = ~0);
- DECLARE_READ_LINE_MEMBER( rxrdy_r );
- DECLARE_READ_LINE_MEMBER( txrdy_r );
+ int rxrdy_r();
+ int txrdy_r();
- DECLARE_WRITE_LINE_MEMBER( rx_w ) { device_serial_interface::rx_w(state); }
+ void rx_w(int state) { device_serial_interface::rx_w(state); }
protected:
// device-level overrides
@@ -82,8 +82,8 @@ private:
devcb_write_line m_write_rxrdy;
devcb_write_line m_write_txrdy;
- line_state m_rxrdy;
- line_state m_txrdy;
+ line_state m_rxrdy;
+ line_state m_txrdy;
int m_rxc;
int m_txc;