diff options
Diffstat (limited to 'src/devices/video/dm9368.h')
-rw-r--r-- | src/devices/video/dm9368.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/devices/video/dm9368.h b/src/devices/video/dm9368.h index 9dc77424a2e..ae9956de30b 100644 --- a/src/devices/video/dm9368.h +++ b/src/devices/video/dm9368.h @@ -47,6 +47,8 @@ class dm9368_device : public device_t public: template <typename Obj> devcb_base &set_update_callback(Obj &&cb) { return m_update_cb.set_callback(std::forward<Obj>(cb)); } template <typename Obj> devcb_base &set_rbo_callback(Obj &&cb) { return m_rbo_cb.set_callback(std::forward<Obj>(cb)); } + auto update_cb() { return m_update_cb.bind(); } + auto rbo_cb() { return m_rbo_cb.bind(); } // construction/destruction dm9368_device(const machine_config &mconfig, const char *tag, device_t *owner, u32 clock); |