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/z180/z180.h | |
parent | 5c14bcdfcb4aefb71b5b62387c4ad05dbeb3814e (diff) |
full xtal conversionxtal
Diffstat (limited to 'src/devices/cpu/z180/z180.h')
-rw-r--r-- | src/devices/cpu/z180/z180.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/devices/cpu/z180/z180.h b/src/devices/cpu/z180/z180.h index 62213845b05..8ec6d2af297 100644 --- a/src/devices/cpu/z180/z180.h +++ b/src/devices/cpu/z180/z180.h @@ -126,7 +126,7 @@ public: protected: // construction/destruction - z180_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock, bool extended_io, address_map_constructor internal_map); + z180_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, const XTAL &clock, bool extended_io, address_map_constructor internal_map); // device-level overrides virtual void device_start() override; @@ -1810,24 +1810,24 @@ class z80180_device : public z180_device { public: // construction/destruction - z80180_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + z80180_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); }; class hd64180rp_device : public z180_device { public: // construction/destruction - hd64180rp_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + hd64180rp_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); }; class z8s180_device : public z180_device { public: // construction/destruction - z8s180_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + z8s180_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); protected: - z8s180_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock); + z8s180_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, const XTAL &clock); // device-level overrides virtual void device_start() override; @@ -1851,7 +1851,7 @@ class z80182_device : public z8s180_device { public: // construction/destruction - z80182_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + z80182_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); }; DECLARE_DEVICE_TYPE(Z80180, z80180_device) |