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/bus/cbmiec/c1571.h | |
parent | 5c14bcdfcb4aefb71b5b62387c4ad05dbeb3814e (diff) |
full xtal conversionxtal
Diffstat (limited to 'src/devices/bus/cbmiec/c1571.h')
-rw-r--r-- | src/devices/bus/cbmiec/c1571.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/devices/bus/cbmiec/c1571.h b/src/devices/bus/cbmiec/c1571.h index 103da690a2c..c25433a4148 100644 --- a/src/devices/bus/cbmiec/c1571.h +++ b/src/devices/bus/cbmiec/c1571.h @@ -41,7 +41,7 @@ class c1571_device : public device_t, public device_cbm_iec_interface, public de { public: // construction/destruction - c1571_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + c1571_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); DECLARE_WRITE_LINE_MEMBER( via0_irq_w ); uint8_t via0_pa_r(); @@ -70,7 +70,7 @@ public: void c1571_mem(address_map &map); protected: - c1571_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock); + c1571_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; @@ -134,7 +134,7 @@ class c1570_device : public c1571_device { public: // construction/destruction - c1570_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + c1570_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); protected: // optional information overrides @@ -149,7 +149,7 @@ class c1571cr_device : public c1571_device { public: // construction/destruction - c1571cr_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + c1571cr_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); protected: // optional information overrides @@ -168,7 +168,7 @@ class mini_chief_device : public c1571_device { public: // construction/destruction - mini_chief_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + mini_chief_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); protected: // optional information overrides |