diff options
author | 2018-12-09 05:34:17 +0100 | |
---|---|---|
committer | 2018-12-09 05:34:30 +0100 | |
commit | 4b3ff6417eed11d0285b4d224ccb6371eececa85 (patch) | |
tree | 58a9565fd5c978e1a568c4e9bcf6d27afc3c151b /src/devices/machine/ncr5385.h | |
parent | 29c777f6429ee2d0b2943290025ce00816e79d7d (diff) |
mcs51.cpp: Removed MCFG. Various MACHINE_CONFIG removals. nw
Diffstat (limited to 'src/devices/machine/ncr5385.h')
-rw-r--r-- | src/devices/machine/ncr5385.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/devices/machine/ncr5385.h b/src/devices/machine/ncr5385.h index 8cbe4ea9e79..3a60ca0a6c8 100644 --- a/src/devices/machine/ncr5385.h +++ b/src/devices/machine/ncr5385.h @@ -65,6 +65,7 @@ public: ncr5385_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_int.set_callback(std::forward<Object>(cb)); } + auto irq() { return m_int.bind(); } DECLARE_WRITE8_MEMBER(write); DECLARE_READ8_MEMBER(read); |