summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/64h156.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/64h156.h')
-rw-r--r--src/devices/machine/64h156.h21
1 files changed, 3 insertions, 18 deletions
diff --git a/src/devices/machine/64h156.h b/src/devices/machine/64h156.h
index 24244e64517..0db1c0a2883 100644
--- a/src/devices/machine/64h156.h
+++ b/src/devices/machine/64h156.h
@@ -67,21 +67,6 @@
//**************************************************************************
-// INTERFACE CONFIGURATION MACROS
-//**************************************************************************
-
-#define MCFG_64H156_ATN_CALLBACK(_write) \
- downcast<c64h156_device &>(*device).set_atn_wr_callback(DEVCB_##_write);
-
-#define MCFG_64H156_SYNC_CALLBACK(_write) \
- downcast<c64h156_device &>(*device).set_sync_wr_callback(DEVCB_##_write);
-
-#define MCFG_64H156_BYTE_CALLBACK(_write) \
- downcast<c64h156_device &>(*device).set_byte_wr_callback(DEVCB_##_write);
-
-
-
-//**************************************************************************
// TYPE DEFINITIONS
//**************************************************************************
@@ -93,9 +78,9 @@ public:
// construction/destruction
c64h156_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
- template <class Object> devcb_base &set_atn_wr_callback(Object &&cb) { return m_write_atn.set_callback(std::forward<Object>(cb)); }
- template <class Object> devcb_base &set_sync_wr_callback(Object &&cb) { return m_write_sync.set_callback(std::forward<Object>(cb)); }
- template <class Object> devcb_base &set_byte_wr_callback(Object &&cb) { return m_write_byte.set_callback(std::forward<Object>(cb)); }
+ auto atn_callback() { return m_write_atn.bind(); }
+ auto sync_callback() { return m_write_sync.bind(); }
+ auto byte_callback() { return m_write_byte.bind(); }
DECLARE_READ8_MEMBER( yb_r );
DECLARE_WRITE8_MEMBER( yb_w );