summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/sound/2612intf.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/sound/2612intf.h')
-rw-r--r--src/devices/sound/2612intf.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/sound/2612intf.h b/src/devices/sound/2612intf.h
index 5dc31593685..13255b59e8f 100644
--- a/src/devices/sound/2612intf.h
+++ b/src/devices/sound/2612intf.h
@@ -15,8 +15,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<ym2612_device *>(param)->update_request(); }