summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/adc0804.cpp
diff options
context:
space:
mode:
author Olivier Galibert <galibert@pobox.com>2022-06-16 12:47:52 +0200
committer Olivier Galibert <galibert@pobox.com>2025-04-29 23:06:41 +0200
commit45d4cd52a8194f2ef9e0383cfb2e2a35634af6ff (patch)
tree4e8d8fcb7382a5e9e0bce5ec59939bcfbe67155a /src/devices/machine/adc0804.cpp
parent5c14bcdfcb4aefb71b5b62387c4ad05dbeb3814e (diff)
full xtal conversionxtal
Diffstat (limited to 'src/devices/machine/adc0804.cpp')
-rw-r--r--src/devices/machine/adc0804.cpp6
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)
{
}