summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/i8212.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/i8212.h')
-rw-r--r--src/devices/machine/i8212.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/devices/machine/i8212.h b/src/devices/machine/i8212.h
index 0d4accbb5c0..477f9d8689b 100644
--- a/src/devices/machine/i8212.h
+++ b/src/devices/machine/i8212.h
@@ -69,6 +69,10 @@ public:
template <class Object> devcb_base &set_di_rd_callback(Object &&cb) { return m_read_di.set_callback(std::forward<Object>(cb)); }
template <class Object> devcb_base &set_do_wr_callback(Object &&cb) { return m_write_do.set_callback(std::forward<Object>(cb)); }
template <class Object> devcb_base &set_md_rd_callback(Object &&cb) { return m_read_md.set_callback(std::forward<Object>(cb)); }
+ auto int_wr_callback() { return m_write_int.bind(); }
+ auto di_rd_callback() { return m_read_di.bind(); }
+ auto do_wr_callback() { return m_write_do.bind(); }
+ auto md_rd_callback() { return m_read_md.bind(); }
// data read handlers
DECLARE_READ8_MEMBER(read);