diff options
Diffstat (limited to 'src/devices/machine/wd33c93.h')
-rw-r--r-- | src/devices/machine/wd33c93.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/devices/machine/wd33c93.h b/src/devices/machine/wd33c93.h index 6f3e8ad2408..d7d14d91e37 100644 --- a/src/devices/machine/wd33c93.h +++ b/src/devices/machine/wd33c93.h @@ -19,9 +19,15 @@ class wd33c93_device : public legacy_scsi_host_adapter { public: // construction/destruction + wd33c93_device(const machine_config &mconfig, const char *tag, device_t *owner) + : wd33c93_device(mconfig, tag, owner, (uint32_t)0) + { + } + wd33c93_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); template<class Object> devcb_base &set_irq_callback(Object &&cb) { return m_irq_cb.set_callback(std::forward<Object>(cb)); } + auto irq_cb() { return m_irq_cb.bind(); } DECLARE_READ8_MEMBER(read); DECLARE_WRITE8_MEMBER(write); |