summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/ds75160a.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/ds75160a.h')
-rw-r--r--src/devices/machine/ds75160a.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/devices/machine/ds75160a.h b/src/devices/machine/ds75160a.h
index bdc03e9dc99..0be5bf9a53a 100644
--- a/src/devices/machine/ds75160a.h
+++ b/src/devices/machine/ds75160a.h
@@ -40,15 +40,15 @@ public:
auto read_callback() { return m_read.bind(); }
auto write_callback() { return m_write.bind(); }
- DECLARE_READ8_MEMBER( read );
- DECLARE_WRITE8_MEMBER( write );
+ uint8_t read();
+ void write(uint8_t data);
- DECLARE_WRITE_LINE_MEMBER( te_w );
- DECLARE_WRITE_LINE_MEMBER( pe_w );
+ void te_w(int state);
+ void pe_w(int state);
protected:
// device-level overrides
- virtual void device_start() override;
+ virtual void device_start() override ATTR_COLD;
private:
devcb_read8 m_read;