summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/arm_iomd.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/arm_iomd.cpp')
-rw-r--r--src/devices/machine/arm_iomd.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/machine/arm_iomd.cpp b/src/devices/machine/arm_iomd.cpp
index e1c32d8d3f3..c29f51d231d 100644
--- a/src/devices/machine/arm_iomd.cpp
+++ b/src/devices/machine/arm_iomd.cpp
@@ -136,7 +136,7 @@ void arm_iomd_device::map(address_map &map)
}
-arm_iomd_device::arm_iomd_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock)
+arm_iomd_device::arm_iomd_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_host_cpu(*this, finder_base::DUMMY_TAG)
, m_vidc(*this, finder_base::DUMMY_TAG)
@@ -157,7 +157,7 @@ arm_iomd_device::arm_iomd_device(const machine_config &mconfig, device_type type
{
}
-arm_iomd_device::arm_iomd_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
+arm_iomd_device::arm_iomd_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock)
: arm_iomd_device(mconfig, ARM_IOMD, tag, owner, clock)
{
m_id = 0xd4e7;
@@ -204,7 +204,7 @@ void arm7500fe_iomd_device::map(address_map &map)
}
-arm7500fe_iomd_device::arm7500fe_iomd_device(const machine_config &mconfig, const char *tag, device_t *owner, u32 clock)
+arm7500fe_iomd_device::arm7500fe_iomd_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock)
: arm_iomd_device(mconfig, ARM7500FE_IOMD, tag, owner, clock)
, m_iolines_read_cb(*this)
, m_iolines_write_cb(*this)