diff options
Diffstat (limited to 'src/devices/bus/archimedes/podule/scsi_vti.cpp')
-rw-r--r-- | src/devices/bus/archimedes/podule/scsi_vti.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/archimedes/podule/scsi_vti.cpp b/src/devices/bus/archimedes/podule/scsi_vti.cpp index f0239dfeeb0..85b2ee04d70 100644 --- a/src/devices/bus/archimedes/podule/scsi_vti.cpp +++ b/src/devices/bus/archimedes/podule/scsi_vti.cpp @@ -29,7 +29,7 @@ class arc_scsi_vti_device : { public: // construction/destruction - arc_scsi_vti_device(const machine_config &mconfig, const char *tag, device_t *owner, u32 clock); + arc_scsi_vti_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); static constexpr feature_type imperfect_features() { return feature::DISK; } @@ -133,7 +133,7 @@ void arc_scsi_vti_device::device_add_mconfig(machine_config &config) // arc_scsi_vti_device - constructor //------------------------------------------------- -arc_scsi_vti_device::arc_scsi_vti_device(const machine_config &mconfig, const char *tag, device_t *owner, u32 clock) +arc_scsi_vti_device::arc_scsi_vti_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock) : device_t(mconfig, ARC_SCSI_VTI, tag, owner, clock) , device_archimedes_podule_interface(mconfig, *this) , m_fas216(*this, "scsi:7:fas216") |