summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/sound/votrax.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/sound/votrax.h')
-rw-r--r--src/devices/sound/votrax.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/devices/sound/votrax.h b/src/devices/sound/votrax.h
index 6a0ae90cdbb..a7122c561af 100644
--- a/src/devices/sound/votrax.h
+++ b/src/devices/sound/votrax.h
@@ -13,9 +13,6 @@
#pragma once
-#define MCFG_VOTRAX_SC01_REQUEST_CB(_devcb) \
- downcast<votrax_sc01_device *>(device)->set_ar_callback(DEVCB_##_devcb);
-
class votrax_sc01_device : public device_t,
public device_sound_interface
{
@@ -25,7 +22,6 @@ public:
// construction/destruction
votrax_sc01_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
- template <class Object> devcb_base &set_ar_callback(Object &&cb) { return m_ar_cb.set_callback(std::forward<Object>(cb)); }
auto ar_callback() { return m_ar_cb.bind(); }
DECLARE_WRITE8_MEMBER(write);