diff options
author | 2014-05-14 06:46:50 +0000 | |
---|---|---|
committer | 2014-05-14 06:46:50 +0000 | |
commit | 546fbff34966f4f5f62930dd73c064df90d4e51e (patch) | |
tree | a2e859303874d5ee6cda105c465983e5223d5675 /src/emu/sound/k056800.h | |
parent | c5a60146edfc6d9bf8ff7f398b0c3fa17b94b1e3 (diff) |
devcv2 -> devcb (nw)
Diffstat (limited to 'src/emu/sound/k056800.h')
-rw-r--r-- | src/emu/sound/k056800.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/emu/sound/k056800.h b/src/emu/sound/k056800.h index 121244e950b..f7b6194913a 100644 --- a/src/emu/sound/k056800.h +++ b/src/emu/sound/k056800.h @@ -15,7 +15,7 @@ #define MCFG_K056800_ADD(_tag, _clock) \ MCFG_DEVICE_ADD(_tag, K056800, _clock) #define MCFG_K056800_INT_HANDLER(_devcb) \ - devcb = &k056800_device::set_int_handler(*device, DEVCB2_##_devcb); + devcb = &k056800_device::set_int_handler(*device, DEVCB_##_devcb); @@ -30,7 +30,7 @@ public: k056800_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); // static configuration helpers - template<class _Object> static devcb2_base &set_int_handler(device_t &device, _Object object) { return downcast<k056800_device &>(device).m_int_handler.set_callback(object); } + template<class _Object> static devcb_base &set_int_handler(device_t &device, _Object object) { return downcast<k056800_device &>(device).m_int_handler.set_callback(object); } DECLARE_READ8_MEMBER( host_r ); DECLARE_WRITE8_MEMBER( host_w ); @@ -49,7 +49,7 @@ private: UINT8 m_host_to_snd_regs[4]; UINT8 m_snd_to_host_regs[2]; - devcb2_write_line m_int_handler; + devcb_write_line m_int_handler; }; extern const device_type K056800; |