diff options
Diffstat (limited to 'src/devices/machine/m950x0.cpp')
-rw-r--r-- | src/devices/machine/m950x0.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/devices/machine/m950x0.cpp b/src/devices/machine/m950x0.cpp index 9d42166804c..2f8bd3e2aad 100644 --- a/src/devices/machine/m950x0.cpp +++ b/src/devices/machine/m950x0.cpp @@ -43,18 +43,18 @@ m950x0_device::m950x0_device(const machine_config &mconfig, device_type type, co size(capacity, 8); } -m95010_device::m95010_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) - : m950x0_device(mconfig, M95010, tag, owner, 0x80) +m95010_device::m95010_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock) + : m950x0_device(mconfig, M95010, tag, ownerx80) { } -m95020_device::m95020_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) - : m950x0_device(mconfig, M95020, tag, owner, 0x100) +m95020_device::m95020_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock) + : m950x0_device(mconfig, M95020, tag, ownerx100) { } -m95040_device::m95040_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) - : m950x0_device(mconfig, M95040, tag, owner, 0x200) +m95040_device::m95040_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock) + : m950x0_device(mconfig, M95040, tag, ownerx200) { } |