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/sh/sh4.h | |
parent | 5c14bcdfcb4aefb71b5b62387c4ad05dbeb3814e (diff) |
full xtal conversionxtal
Diffstat (limited to 'src/devices/cpu/sh/sh4.h')
-rw-r--r-- | src/devices/cpu/sh/sh4.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/devices/cpu/sh/sh4.h b/src/devices/cpu/sh/sh4.h index b2c97c9dc16..40b4bdd0dac 100644 --- a/src/devices/cpu/sh/sh4.h +++ b/src/devices/cpu/sh/sh4.h @@ -254,7 +254,7 @@ public: protected: // construction/destruction - sh34_base_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock, endianness_t endianness, address_map_constructor internal); + sh34_base_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, const XTAL &clock, endianness_t endianness, address_map_constructor internal); // device-level overrides virtual void device_start() override; @@ -690,7 +690,7 @@ public: void sh3_internal_map(address_map &map); protected: // construction/destruction - sh3_base_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock, endianness_t endianness); + sh3_base_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, const XTAL &clock, endianness_t endianness); virtual void device_reset() override; }; @@ -718,7 +718,7 @@ public: void sh4_internal_map(address_map &map); protected: // construction/destruction - sh4_base_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock, endianness_t endianness); + sh4_base_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, const XTAL &clock, endianness_t endianness); virtual void device_start() override; virtual void device_reset() override; @@ -729,7 +729,7 @@ class sh3_device : public sh3_base_device { friend class sh4_frontend; public: - sh3_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + sh3_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); std::unique_ptr<sh4_frontend> m_drcfe; /* pointer to the DRC front-end state */ virtual const opcode_desc* get_desclist(offs_t pc) override; virtual void init_drc_frontend() override; @@ -741,7 +741,7 @@ class sh3be_device : public sh3_base_device friend class sh4be_frontend; public: - sh3be_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + sh3be_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); std::unique_ptr<sh4be_frontend> m_drcfe; /* pointer to the DRC front-end state */ virtual const opcode_desc* get_desclist(offs_t pc) override; virtual void init_drc_frontend() override; @@ -756,7 +756,7 @@ class sh4_device : public sh4_base_device friend class sh4_frontend; public: - sh4_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + sh4_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); std::unique_ptr<sh4_frontend> m_drcfe; /* pointer to the DRC front-end state */ virtual const opcode_desc* get_desclist(offs_t pc) override; virtual void init_drc_frontend() override; @@ -769,7 +769,7 @@ class sh4be_device : public sh4_base_device friend class sh4be_frontend; public: - sh4be_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + sh4be_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); std::unique_ptr<sh4be_frontend> m_drcfe; /* pointer to the DRC front-end state */ virtual const opcode_desc* get_desclist(offs_t pc) override; virtual void init_drc_frontend() override; |