summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/video/mm5445.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/video/mm5445.cpp
parent5c14bcdfcb4aefb71b5b62387c4ad05dbeb3814e (diff)
full xtal conversionxtal
Diffstat (limited to 'src/devices/video/mm5445.cpp')
-rw-r--r--src/devices/video/mm5445.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/devices/video/mm5445.cpp b/src/devices/video/mm5445.cpp
index 6b857ed19b3..b52b6ba5bff 100644
--- a/src/devices/video/mm5445.cpp
+++ b/src/devices/video/mm5445.cpp
@@ -22,25 +22,25 @@ DEFINE_DEVICE_TYPE(MM5448, mm5448_device, "mm5448", "MM5448 VFD Driver")
// constructor
//-------------------------------------------------
-mm5445_device::mm5445_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, u32 clock, u8 outpins) :
+mm5445_device::mm5445_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, const XTAL &clock, u8 outpins) :
device_t(mconfig, type, tag, owner, clock),
m_outmask((u64(1) << outpins) - 1),
m_write_output(*this)
{ }
-mm5445_device::mm5445_device(const machine_config &mconfig, const char *tag, device_t *owner, u32 clock) :
+mm5445_device::mm5445_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock) :
mm5445_device(mconfig, MM5445, tag, owner, clock, 33)
{ }
-mm5446_device::mm5446_device(const machine_config &mconfig, const char *tag, device_t *owner, u32 clock) :
+mm5446_device::mm5446_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock) :
mm5445_device(mconfig, MM5446, tag, owner, clock, 34)
{ }
-mm5447_device::mm5447_device(const machine_config &mconfig, const char *tag, device_t *owner, u32 clock) :
+mm5447_device::mm5447_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock) :
mm5445_device(mconfig, MM5447, tag, owner, clock, 34)
{ }
-mm5448_device::mm5448_device(const machine_config &mconfig, const char *tag, device_t *owner, u32 clock) :
+mm5448_device::mm5448_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock) :
mm5445_device(mconfig, MM5448, tag, owner, clock, 35)
{ }