diff options
author | 2018-09-10 19:10:01 +0200 | |
---|---|---|
committer | 2018-09-10 19:10:01 +0200 | |
commit | 8cd06312956e5b482703517bef2ca65466ef3222 (patch) | |
tree | 414ad38c6f8656ac53665650bc639d118c810844 /src/devices/sound/k056800.h | |
parent | 5d7450dfe0b1a531e15fd2a5f5d9eaa7e0d265eb (diff) |
k056800: removed MCFG macros (nw)
Diffstat (limited to 'src/devices/sound/k056800.h')
-rw-r--r-- | src/devices/sound/k056800.h | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/src/devices/sound/k056800.h b/src/devices/sound/k056800.h index 4964304deb3..ea20ebdb23d 100644 --- a/src/devices/sound/k056800.h +++ b/src/devices/sound/k056800.h @@ -11,18 +11,6 @@ /*************************************************************************** - DEVICE CONFIGURATION MACROS -***************************************************************************/ - -#define MCFG_K056800_ADD(tag, clock) \ - MCFG_DEVICE_ADD((tag), K056800, (clock)) - -#define MCFG_K056800_INT_HANDLER(cb) \ - downcast<k056800_device &>(*device).set_int_handler((DEVCB_##cb)); - - - -/*************************************************************************** TYPE DEFINITIONS ***************************************************************************/ @@ -33,7 +21,6 @@ public: k056800_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); // configuration helpers - template <class Object> devcb_base &set_int_handler(Object &&cb) { return m_int_handler.set_callback(std::forward<Object>(cb)); } auto int_callback() { return m_int_handler.bind(); } DECLARE_READ8_MEMBER( host_r ); |