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/cpu/mn1880/mn1880.h | |
parent | 5c14bcdfcb4aefb71b5b62387c4ad05dbeb3814e (diff) |
full xtal conversionxtal
Diffstat (limited to 'src/devices/cpu/mn1880/mn1880.h')
-rw-r--r-- | src/devices/cpu/mn1880/mn1880.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/cpu/mn1880/mn1880.h b/src/devices/cpu/mn1880/mn1880.h index 47f470c02a8..cb0b59bc656 100644 --- a/src/devices/cpu/mn1880/mn1880.h +++ b/src/devices/cpu/mn1880/mn1880.h @@ -9,7 +9,7 @@ class mn1880_device : public cpu_device { public: - mn1880_device(const machine_config &config, const char *tag, device_t *owner, u32 clock); + mn1880_device(const machine_config &config, const char *tag, device_t *owner, const XTAL &clock); enum { MN1880_IP, MN1880_IPA, MN1880_IPB, @@ -29,7 +29,7 @@ public: }; protected: - mn1880_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, u32 clock, bool has_mmu, address_map_constructor data_map); + mn1880_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, const XTAL &clock, bool has_mmu, address_map_constructor data_map); // device-level overrides virtual void device_start() override; @@ -235,7 +235,7 @@ private: class mn18801a_device : public mn1880_device { public: - mn18801a_device(const machine_config &config, const char *tag, device_t *owner, u32 clock); + mn18801a_device(const machine_config &config, const char *tag, device_t *owner, const XTAL &clock); }; DECLARE_DEVICE_TYPE(MN1880, mn1880_device) |