summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/z8/z8.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/z8/z8.h
parent5c14bcdfcb4aefb71b5b62387c4ad05dbeb3814e (diff)
full xtal conversionxtal
Diffstat (limited to 'src/devices/cpu/z8/z8.h')
-rw-r--r--src/devices/cpu/z8/z8.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/devices/cpu/z8/z8.h b/src/devices/cpu/z8/z8.h
index c092cfd4066..ad4c2dd6e7f 100644
--- a/src/devices/cpu/z8/z8.h
+++ b/src/devices/cpu/z8/z8.h
@@ -39,7 +39,7 @@ protected:
};
// construction/destruction
- z8_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock, uint32_t rom_size, bool preprogrammed);
+ z8_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, const XTAL &clock, uint32_t rom_size, bool preprogrammed);
// device-level overrides
virtual void device_start() override;
@@ -383,28 +383,28 @@ private:
class z8601_device : public z8_device
{
public:
- z8601_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
+ z8601_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock);
};
class ub8830d_device : public z8_device
{
public:
- ub8830d_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
+ ub8830d_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock);
};
class z8611_device : public z8_device
{
public:
- z8611_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
+ z8611_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock);
};
class z8671_device : public z8_device
{
public:
- z8671_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
+ z8671_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock);
protected:
const tiny_rom_entry *device_rom_region() const override;
@@ -414,14 +414,14 @@ protected:
class z8681_device : public z8_device
{
public:
- z8681_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
+ z8681_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock);
};
class z8682_device : public z8_device
{
public:
- z8682_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
+ z8682_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock);
protected:
const tiny_rom_entry *device_rom_region() const override;
@@ -431,7 +431,7 @@ protected:
class z86e02_device : public z8_device
{
public:
- z86e02_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
+ z86e02_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock);
};