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/machine/6522via.h | |
parent | 5c14bcdfcb4aefb71b5b62387c4ad05dbeb3814e (diff) |
full xtal conversionxtal
Diffstat (limited to 'src/devices/machine/6522via.h')
-rw-r--r-- | src/devices/machine/6522via.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/devices/machine/6522via.h b/src/devices/machine/6522via.h index 813a74a63d5..87ae018b31f 100644 --- a/src/devices/machine/6522via.h +++ b/src/devices/machine/6522via.h @@ -118,7 +118,7 @@ public: protected: // construction/destruction - via6522_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock); + via6522_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, const XTAL &clock); // device-level overrides virtual void device_start() override; @@ -213,7 +213,7 @@ class mos6522_device : public via6522_device { public: // construction/destruction - mos6522_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + mos6522_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); }; // ======================> r65c22_device @@ -222,7 +222,7 @@ class r65c22_device : public via6522_device { public: // construction/destruction - r65c22_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + r65c22_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); }; // ======================> r65nc22_device @@ -231,7 +231,7 @@ class r65nc22_device : public via6522_device { public: // construction/destruction - r65nc22_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + r65nc22_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); }; // ======================> w65c22s_device @@ -240,7 +240,7 @@ class w65c22s_device : public via6522_device { public: // construction/destruction - w65c22s_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + w65c22s_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); }; |