diff options
Diffstat (limited to 'src/devices/cpu/adsp2100/adsp2100.h')
-rw-r--r-- | src/devices/cpu/adsp2100/adsp2100.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/devices/cpu/adsp2100/adsp2100.h b/src/devices/cpu/adsp2100/adsp2100.h index 046e10fa6ba..2638d56c04d 100644 --- a/src/devices/cpu/adsp2100/adsp2100.h +++ b/src/devices/cpu/adsp2100/adsp2100.h @@ -210,7 +210,7 @@ protected: }; // construction/destruction - adsp21xx_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock, uint32_t chiptype); + adsp21xx_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, const XTAL &clock, uint32_t chiptype); // device-level overrides virtual void device_start() override; @@ -473,7 +473,7 @@ class adsp2100_device : public adsp21xx_device { public: // construction/destruction - adsp2100_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + adsp2100_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); protected: // device_execute_interface overrides @@ -494,10 +494,10 @@ class adsp2101_device : public adsp21xx_device { public: // construction/destruction - adsp2101_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + adsp2101_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); protected: - adsp2101_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock, uint32_t chiptype); + adsp2101_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, const XTAL &clock, uint32_t chiptype); // device_execute_interface overrides virtual uint32_t execute_input_lines() const noexcept override; @@ -517,7 +517,7 @@ class adsp2181_device : public adsp21xx_device { public: // construction/destruction - adsp2181_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + adsp2181_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); protected: // device_execute_interface overrides @@ -547,19 +547,19 @@ public: class adsp2104_device : public adsp2101_device { public: - adsp2104_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + adsp2104_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); }; class adsp2105_device : public adsp2101_device { public: - adsp2105_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + adsp2105_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); }; class adsp2115_device : public adsp2101_device { public: - adsp2115_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + adsp2115_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); }; |