diff options
Diffstat (limited to 'src/devices/machine/iopcdvd.h')
-rw-r--r-- | src/devices/machine/iopcdvd.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/machine/iopcdvd.h b/src/devices/machine/iopcdvd.h index 194933eb3d9..15717da7612 100644 --- a/src/devices/machine/iopcdvd.h +++ b/src/devices/machine/iopcdvd.h @@ -21,12 +21,12 @@ class iop_cdvd_device : public device_t public: template <typename T> iop_cdvd_device(const machine_config &mconfig, const char *tag, device_t *owner, T &&intc_tag) - : iop_cdvd_device(mconfig, tag, owner, (uint32_t)0) + : iop_cdvd_device(mconfig, tag, owner) { m_intc.set_tag(std::forward<T>(intc_tag)); } - iop_cdvd_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + iop_cdvd_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock = XTAL()); virtual ~iop_cdvd_device() override; uint8_t read(offs_t offset); |