summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/m37710/m37710.h
diff options
context:
space:
mode:
author Olivier Galibert <galibert@pobox.com>2022-06-16 12:47:52 +0200
committer Olivier Galibert <galibert@pobox.com>2025-04-29 23:06:41 +0200
commit45d4cd52a8194f2ef9e0383cfb2e2a35634af6ff (patch)
tree4e8d8fcb7382a5e9e0bce5ec59939bcfbe67155a /src/devices/cpu/m37710/m37710.h
parent5c14bcdfcb4aefb71b5b62387c4ad05dbeb3814e (diff)
full xtal conversionxtal
Diffstat (limited to 'src/devices/cpu/m37710/m37710.h')
-rw-r--r--src/devices/cpu/m37710/m37710.h16
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);
};