diff options
Diffstat (limited to 'src/devices/machine/adc0804.cpp')
-rw-r--r-- | src/devices/machine/adc0804.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/machine/adc0804.cpp b/src/devices/machine/adc0804.cpp index 12eb9e7754d..8f75a5effe6 100644 --- a/src/devices/machine/adc0804.cpp +++ b/src/devices/machine/adc0804.cpp @@ -57,7 +57,7 @@ ALLOW_SAVE_TYPE(adc0804_device::read_mode); // adc0804_device - constructor //------------------------------------------------- -adc0804_device::adc0804_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, u32 clock) +adc0804_device::adc0804_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, const XTAL &clock) : device_t(mconfig, type, tag, owner, clock) , m_vin_callback(*this) , m_intr_callback(*this) @@ -73,7 +73,7 @@ adc0804_device::adc0804_device(const machine_config &mconfig, device_type type, { } -adc0804_device::adc0804_device(const machine_config &mconfig, const char *tag, device_t *owner, u32 clock) +adc0804_device::adc0804_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock) : adc0804_device(mconfig, ADC0804, tag, owner, clock) { } @@ -83,7 +83,7 @@ adc0804_device::adc0804_device(const machine_config &mconfig, const char *tag, d // adc0803_device - constructor //------------------------------------------------- -adc0803_device::adc0803_device(const machine_config &mconfig, const char *tag, device_t *owner, u32 clock) +adc0803_device::adc0803_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock) : adc0804_device(mconfig, ADC0803, tag, owner, clock) { } |