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/video/mos6566.h | |
parent | 5c14bcdfcb4aefb71b5b62387c4ad05dbeb3814e (diff) |
full xtal conversionxtal
Diffstat (limited to 'src/devices/video/mos6566.h')
-rw-r--r-- | src/devices/video/mos6566.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/devices/video/mos6566.h b/src/devices/video/mos6566.h index a7147295196..0e64aada3de 100644 --- a/src/devices/video/mos6566.h +++ b/src/devices/video/mos6566.h @@ -189,7 +189,7 @@ class mos6566_device : public device_t, { public: // construction/destruction - mos6566_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + mos6566_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); template <class T> void set_cpu(T &&tag) { m_cpu.set_tag(tag); } auto irq_callback() { return m_write_irq.bind(); } @@ -228,7 +228,7 @@ protected: TYPE_8569 // PAL-N VIC-IIe (C128) }; - mos6566_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock, uint32_t variant); + mos6566_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, const XTAL &clock, uint32_t variant); // device-level overrides virtual void device_start() override; @@ -356,10 +356,10 @@ class mos6567_device : public mos6566_device { public: // construction/destruction - mos6567_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + mos6567_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); protected: - mos6567_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock, uint32_t variant); + mos6567_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, const XTAL &clock, uint32_t variant); }; @@ -369,7 +369,7 @@ class mos8562_device : public mos6567_device { public: // construction/destruction - mos8562_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + mos8562_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); }; @@ -379,7 +379,7 @@ class mos8564_device : public mos6567_device { public: // construction/destruction - mos8564_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + mos8564_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); protected: // device_execute_interface overrides @@ -394,10 +394,10 @@ class mos6569_device : public mos6566_device { public: // construction/destruction - mos6569_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + mos6569_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); protected: - mos6569_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock, uint32_t variant); + mos6569_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, const XTAL &clock, uint32_t variant); // device-level overrides virtual void execute_run() override; @@ -410,7 +410,7 @@ class mos8565_device : public mos6569_device { public: // construction/destruction - mos8565_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + mos8565_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); }; @@ -420,7 +420,7 @@ class mos8566_device : public mos6569_device { public: // construction/destruction - mos8566_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + mos8566_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); protected: // device_execute_interface overrides |