diff options
Diffstat (limited to 'src/devices/cpu/m37710/m37710.h')
-rw-r--r-- | src/devices/cpu/m37710/m37710.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/devices/cpu/m37710/m37710.h b/src/devices/cpu/m37710/m37710.h index 6426c2eb54f..3ac8036c81c 100644 --- a/src/devices/cpu/m37710/m37710.h +++ b/src/devices/cpu/m37710/m37710.h @@ -197,7 +197,7 @@ protected: void set_int_control(int level, uint8_t data); // construction/destruction - m37710_cpu_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock, address_map_constructor map_delegate); + m37710_cpu_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, const XTAL &clock, address_map_constructor map_delegate); // device-level overrides virtual void device_start() override; @@ -2144,7 +2144,7 @@ class m37702s1_device : public m37710_cpu_device { public: // construction/destruction - m37702s1_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + m37702s1_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); protected: void map(address_map &map); }; @@ -2153,9 +2153,9 @@ class m37702m2_device : public m37710_cpu_device { public: // construction/destruction - m37702m2_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + m37702m2_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); protected: - m37702m2_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock); + m37702m2_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, const XTAL &clock); void map(address_map &map); }; @@ -2163,7 +2163,7 @@ class m37710s4_device : public m37710_cpu_device { public: // construction/destruction - m37710s4_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + m37710s4_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); protected: void map(address_map &map); }; @@ -2172,7 +2172,7 @@ class m37720s1_device : public m37710_cpu_device { public: // construction/destruction - m37720s1_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + m37720s1_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); protected: void map(address_map &map); }; @@ -2181,7 +2181,7 @@ class m37730s2_device : public m37710_cpu_device { public: // construction/destruction - m37730s2_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + m37730s2_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); protected: void map(address_map &map); }; @@ -2190,7 +2190,7 @@ class m37732s4_device : public m37710_cpu_device { public: // construction/destruction - m37732s4_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + m37732s4_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); protected: void map(address_map &map); }; |