diff options
author | 2019-06-06 15:21:03 -0400 | |
---|---|---|
committer | 2019-06-06 15:21:03 -0400 | |
commit | f5d8c0f5047a3f71d580cced236a0a1031a386d7 (patch) | |
tree | 58a5f6e625406788c3f32031aa771f894f50659c /src/devices/bus/ti99x | |
parent | 7b7142bcc0b95289c099021668c536cf195928ea (diff) |
devcb: Eliminate legacy callback syntax (nw)
Diffstat (limited to 'src/devices/bus/ti99x')
-rw-r--r-- | src/devices/bus/ti99x/990_hd.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/devices/bus/ti99x/990_hd.h b/src/devices/bus/ti99x/990_hd.h index 803e9ca7c79..22436d389f5 100644 --- a/src/devices/bus/ti99x/990_hd.h +++ b/src/devices/bus/ti99x/990_hd.h @@ -15,8 +15,6 @@ class ti990_hdc_device : public device_t public: ti990_hdc_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); - template <class Object> devcb_base &set_int_callback(Object &&cb) { return m_interrupt_callback.set_callback(std::forward<Object>(cb)); } - DECLARE_READ16_MEMBER(read); DECLARE_WRITE16_MEMBER(write); |