summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/sound/2608intf.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/sound/2608intf.h')
-rw-r--r--src/devices/sound/2608intf.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/sound/2608intf.h b/src/devices/sound/2608intf.h
index 76c69ec3961..23506b66eea 100644
--- a/src/devices/sound/2608intf.h
+++ b/src/devices/sound/2608intf.h
@@ -21,8 +21,8 @@ public:
template <class Object> devcb_base &set_irq_handler(Object &&cb) { return m_irq_handler.set_callback(std::forward<Object>(cb)); }
auto irq_handler() { return m_irq_handler.bind(); }
- DECLARE_READ8_MEMBER( read );
- DECLARE_WRITE8_MEMBER( write );
+ u8 read(offs_t offset);
+ void write(offs_t offset, u8 data);
// update request from fm.cpp
static void update_request(device_t *param) { downcast<ym2608_device *>(param)->update_request(); }