summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/sound/scsp.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/sound/scsp.h')
-rw-r--r--src/devices/sound/scsp.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/devices/sound/scsp.h b/src/devices/sound/scsp.h
index 983e37c3a9f..ef2268f5101 100644
--- a/src/devices/sound/scsp.h
+++ b/src/devices/sound/scsp.h
@@ -38,6 +38,9 @@ public:
template <class Object> devcb_base &set_irq_callback(Object &&cb) { return m_irq_cb.set_callback(std::forward<Object>(cb)); }
template <class Object> devcb_base &set_main_irq_callback(Object &&cb) { return m_main_irq_cb.set_callback(std::forward<Object>(cb)); }
template <class Object> devcb_base &set_exts_callback(Object &&cb) { return m_exts_cb.set_callback(std::forward<Object>(cb)); }
+ auto irq_cb() { return m_irq_cb.bind(); }
+ auto main_irq_cb() { return m_main_irq_cb.bind(); }
+ auto exts_cb() { return m_exts_cb.bind(); }
// SCSP register access
DECLARE_READ16_MEMBER( read );