diff options
Diffstat (limited to 'src/devices/bus/archimedes/podule/scan256.cpp')
-rw-r--r-- | src/devices/bus/archimedes/podule/scan256.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/archimedes/podule/scan256.cpp b/src/devices/bus/archimedes/podule/scan256.cpp index 8666084c04b..b8454035e4a 100644 --- a/src/devices/bus/archimedes/podule/scan256.cpp +++ b/src/devices/bus/archimedes/podule/scan256.cpp @@ -24,7 +24,7 @@ class arc_scan256_device : { public: // construction/destruction - arc_scan256_device(const machine_config &mconfig, const char *tag, device_t *owner, u32 clock); + arc_scan256_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); static constexpr feature_type unemulated_features() { return feature::CAPTURE; } @@ -88,7 +88,7 @@ void arc_scan256_device::device_add_mconfig(machine_config &config) // arc_scan256_device - constructor //------------------------------------------------- -arc_scan256_device::arc_scan256_device(const machine_config &mconfig, const char *tag, device_t *owner, u32 clock) +arc_scan256_device::arc_scan256_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock) : device_t(mconfig, ARC_SCAN256, tag, owner, clock) , device_archimedes_podule_interface(mconfig, *this) , m_podule_rom(*this, "podule_rom") |