diff options
Diffstat (limited to 'src/devices/sound/sp0250.h')
-rw-r--r-- | src/devices/sound/sp0250.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/devices/sound/sp0250.h b/src/devices/sound/sp0250.h index 665b719e725..dd1b0aa160b 100644 --- a/src/devices/sound/sp0250.h +++ b/src/devices/sound/sp0250.h @@ -10,7 +10,6 @@ class sp0250_device : public device_t, public device_sound_interface public: sp0250_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); - template <class Object> devcb_base &set_drq_callback(Object &&cb) { return m_drq.set_callback(std::forward<Object>(cb)); } auto drq() { return m_drq.bind(); } DECLARE_WRITE8_MEMBER( write ); @@ -50,7 +49,4 @@ private: DECLARE_DEVICE_TYPE(SP0250, sp0250_device) -#define MCFG_SP0250_DRQ_CALLBACK(_write) \ - downcast<sp0250_device &>(*device).set_drq_callback(DEVCB_##_write); - #endif // MAME_SOUND_SP0250_H |