diff options
Diffstat (limited to 'src/devices/bus/cbmiec/c1526.h')
-rw-r--r-- | src/devices/bus/cbmiec/c1526.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/bus/cbmiec/c1526.h b/src/devices/bus/cbmiec/c1526.h index d5042f283f1..40acefc91eb 100644 --- a/src/devices/bus/cbmiec/c1526.h +++ b/src/devices/bus/cbmiec/c1526.h @@ -27,7 +27,7 @@ class c1526_device_base : public device_t { protected: // construction/destruction - c1526_device_base(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock); + c1526_device_base(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, const XTAL &clock); // device-level overrides virtual void device_start() override; @@ -42,7 +42,7 @@ class c1526_device : public c1526_device_base, public device_cbm_iec_interface { public: // construction/destruction - c1526_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + c1526_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); protected: // optional information overrides @@ -63,7 +63,7 @@ class c4023_device : public c1526_device_base, public device_ieee488_interface { public: // construction/destruction - c4023_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + c4023_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); protected: // optional information overrides |