diff options
Diffstat (limited to 'src/devices/sound/asc.h')
-rw-r--r-- | src/devices/sound/asc.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/sound/asc.h b/src/devices/sound/asc.h index 591c95d71af..b5bea7e4ca2 100644 --- a/src/devices/sound/asc.h +++ b/src/devices/sound/asc.h @@ -36,13 +36,13 @@ public: ARDBEG = 7 // Subset of ASC included in the Ardbeg ASIC (LC520) }; - asc_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock, asc_type type) + asc_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock, asc_type type) : asc_device(mconfig, tag, owner, clock) { set_type(type); } - asc_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + asc_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); static constexpr feature_type imperfect_features() { return feature::SOUND; } |