summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/am2847.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/am2847.cpp')
-rw-r--r--src/devices/machine/am2847.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/machine/am2847.cpp b/src/devices/machine/am2847.cpp
index 7e7992a2e85..9d8181bdf2e 100644
--- a/src/devices/machine/am2847.cpp
+++ b/src/devices/machine/am2847.cpp
@@ -13,7 +13,7 @@ DEFINE_DEVICE_TYPE(AM2847, am2847_device, "am2847", "AMD Am2847 80-bit Static
DEFINE_DEVICE_TYPE(AM2849, am2849_device, "am2849", "AMD Am2849 96-bit Static Shift Register")
DEFINE_DEVICE_TYPE(TMS3409, tms3409_device, "tms3409", "TI TMS3409 80-bit Static Shift Register")
-am2847_base_device::am2847_base_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock, size_t size)
+am2847_base_device::am2847_base_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, const XTAL &clock, size_t size)
: device_t(mconfig, type, tag, owner, clock)
, m_in(0)
, m_out(0)
@@ -23,17 +23,17 @@ am2847_base_device::am2847_base_device(const machine_config &mconfig, device_typ
{
}
-am2847_device::am2847_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
+am2847_device::am2847_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock)
: am2847_base_device(mconfig, AM2847, tag, owner, clock, 5)
{
}
-am2849_device::am2849_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
+am2849_device::am2849_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock)
: am2847_base_device(mconfig, AM2849, tag, owner, clock, 6)
{
}
-tms3409_device::tms3409_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
+tms3409_device::tms3409_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock)
: am2847_base_device(mconfig, TMS3409, tag, owner, clock, 5)
{
}