summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/msm58321.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/msm58321.h')
-rw-r--r--src/devices/machine/msm58321.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/devices/machine/msm58321.h b/src/devices/machine/msm58321.h
index 24eb2dd327d..00f5a524322 100644
--- a/src/devices/machine/msm58321.h
+++ b/src/devices/machine/msm58321.h
@@ -81,6 +81,11 @@ public:
template <class Object> devcb_base &set_d2_handler(Object &&cb) { return m_d2_handler.set_callback(std::forward<Object>(cb)); }
template <class Object> devcb_base &set_d3_handler(Object &&cb) { return m_d3_handler.set_callback(std::forward<Object>(cb)); }
template <class Object> devcb_base &set_busy_handler(Object &&cb) { return m_busy_handler.set_callback(std::forward<Object>(cb)); }
+ auto d0_handler() { return m_d0_handler.bind(); }
+ auto d1_handler() { return m_d1_handler.bind(); }
+ auto d2_handler() { return m_d2_handler.bind(); }
+ auto d3_handler() { return m_d3_handler.bind(); }
+ auto busy_handler() { return m_busy_handler.bind(); }
void set_year0(int year0) { m_year0 = year0; }
void set_default_24h(bool default_24h) { m_default_24h = default_24h; }