diff options
author | 2018-08-13 21:18:26 -0400 | |
---|---|---|
committer | 2018-08-13 21:22:08 -0400 | |
commit | b1c7579b3fde172fbaf8a6503c1a719ee92f743c (patch) | |
tree | dedf6c86e3b96973204095e2210c80b0a9422175 /src/devices/sound/3526intf.h | |
parent | bc54aab8bcda52f365adb944bae0021623773ba0 (diff) |
c64_expansion_slot, pet_user_port: Eliminate all remaining MCFG_ macro use (nw)
bus/c64: Use DERIVED_CLOCK instead of machine().device hackery for passthru carts (nw)
c64.cpp, c128.cpp: Use input merger devices for all emulated interrupts (nw)
Diffstat (limited to 'src/devices/sound/3526intf.h')
-rw-r--r-- | src/devices/sound/3526intf.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/devices/sound/3526intf.h b/src/devices/sound/3526intf.h index bba99b7f2b9..a37dd632b99 100644 --- a/src/devices/sound/3526intf.h +++ b/src/devices/sound/3526intf.h @@ -16,6 +16,7 @@ public: // configuration helpers template <class Object> devcb_base &set_irq_handler(Object &&cb) { return m_irq_handler.set_callback(std::forward<Object>(cb)); } + auto irq_handler() { return m_irq_handler.bind(); } DECLARE_READ8_MEMBER( read ); DECLARE_WRITE8_MEMBER( write ); |