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, 0 insertions, 4 deletions
diff --git a/src/devices/machine/i8212.h b/src/devices/machine/i8212.h
index 18eb49e4da5..5168d98c714 100644
--- a/src/devices/machine/i8212.h
+++ b/src/devices/machine/i8212.h
@@ -38,10 +38,6 @@ public:
// construction/destruction
i8212_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock = 0);
- template <class Object> devcb_base &set_int_wr_callback(Object &&cb) { return m_write_int.set_callback(std::forward<Object>(cb)); }
- 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(); }