diff options
author | 2022-06-16 12:47:52 +0200 | |
---|---|---|
committer | 2025-04-29 23:06:41 +0200 | |
commit | 45d4cd52a8194f2ef9e0383cfb2e2a35634af6ff (patch) | |
tree | 4e8d8fcb7382a5e9e0bce5ec59939bcfbe67155a /src/devices/machine/m3002.cpp | |
parent | 5c14bcdfcb4aefb71b5b62387c4ad05dbeb3814e (diff) |
full xtal conversionxtal
Diffstat (limited to 'src/devices/machine/m3002.cpp')
-rw-r--r-- | src/devices/machine/m3002.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/machine/m3002.cpp b/src/devices/machine/m3002.cpp index 1e021571896..ccc3c2e8922 100644 --- a/src/devices/machine/m3002.cpp +++ b/src/devices/machine/m3002.cpp @@ -34,7 +34,7 @@ ALLOW_SAVE_TYPE(m3002_device::mux_state); // m3002_device - constructor //------------------------------------------------- -m3002_device::m3002_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, u32 clock) +m3002_device::m3002_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, const XTAL &clock) : device_t(mconfig, type, tag, owner, clock) , device_nvram_interface(mconfig, *this) , device_rtc_interface(mconfig, *this) @@ -48,7 +48,7 @@ m3002_device::m3002_device(const machine_config &mconfig, device_type type, cons std::fill_n(&m_ram[0], 0x10, 0); } -m3002_device::m3002_device(const machine_config &mconfig, const char *tag, device_t *owner, u32 clock) +m3002_device::m3002_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock) : m3002_device(mconfig, M3002, tag, owner, clock) { } @@ -58,7 +58,7 @@ m3002_device::m3002_device(const machine_config &mconfig, const char *tag, devic // m3000_device - constructor //------------------------------------------------- -m3000_device::m3000_device(const machine_config &mconfig, const char *tag, device_t *owner, u32 clock) +m3000_device::m3000_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock) : m3002_device(mconfig, M3000, tag, owner, clock) { } |