summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/sound/ad1848.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/sound/ad1848.h')
-rw-r--r--src/devices/sound/ad1848.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/sound/ad1848.h b/src/devices/sound/ad1848.h
index 61d8a9202d8..2b98691befa 100644
--- a/src/devices/sound/ad1848.h
+++ b/src/devices/sound/ad1848.h
@@ -16,10 +16,10 @@ public:
auto irq() { return m_irq_cb.bind(); }
auto drq() { return m_drq_cb.bind(); }
- DECLARE_READ8_MEMBER(read);
- DECLARE_WRITE8_MEMBER(write);
- DECLARE_READ8_MEMBER(dack_r);
- DECLARE_WRITE8_MEMBER(dack_w);
+ uint8_t read(offs_t offset);
+ void write(offs_t offset, uint8_t data);
+ uint8_t dack_r();
+ void dack_w(uint8_t data);
protected:
virtual void device_start() override;