diff options
Diffstat (limited to 'src/devices/cpu/h8/h8_sci.h')
-rw-r--r-- | src/devices/cpu/h8/h8_sci.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/h8/h8_sci.h b/src/devices/cpu/h8/h8_sci.h index 8c07ffe5ec2..1c9c04b38fe 100644 --- a/src/devices/cpu/h8/h8_sci.h +++ b/src/devices/cpu/h8/h8_sci.h @@ -19,9 +19,9 @@ class h8_sci_device : public device_t { public: - h8_sci_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + h8_sci_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock = XTAL()); h8_sci_device(const machine_config &mconfig, const char *tag, device_t *owner, const char *intc, int eri, int rxi, int txi, int tei) - : h8_sci_device(mconfig, tag, owner, 0) + : h8_sci_device(mconfig, tag, owner) { set_info(intc, eri, rxi, txi, tei); } |