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/imagedev/snapquik.h | |
parent | 5c14bcdfcb4aefb71b5b62387c4ad05dbeb3814e (diff) |
full xtal conversionxtal
Diffstat (limited to 'src/devices/imagedev/snapquik.h')
-rw-r--r-- | src/devices/imagedev/snapquik.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/devices/imagedev/snapquik.h b/src/devices/imagedev/snapquik.h index f312e4d4f39..489db53cb35 100644 --- a/src/devices/imagedev/snapquik.h +++ b/src/devices/imagedev/snapquik.h @@ -22,12 +22,12 @@ public: // construction/destruction snapshot_image_device(const machine_config &mconfig, const char *tag, device_t *owner, const char* extensions, attotime delay = attotime::zero) - : snapshot_image_device(mconfig, tag, owner, 0U) + : snapshot_image_device(mconfig, tag, owner) { set_extensions(extensions); set_delay(delay); } - snapshot_image_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + snapshot_image_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock = XTAL()); virtual ~snapshot_image_device(); void set_interface(const char *interface) { m_interface = interface; } @@ -49,7 +49,7 @@ public: template <typename... T> void set_load_callback(T &&... args) { m_load.set(std::forward<T>(args)...); } protected: - snapshot_image_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock); + snapshot_image_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; @@ -76,12 +76,12 @@ class quickload_image_device : public snapshot_image_device public: // construction/destruction quickload_image_device(const machine_config &mconfig, const char *tag, device_t *owner, const char* extensions, attotime delay = attotime::zero) - : quickload_image_device(mconfig, tag, owner, 0U) + : quickload_image_device(mconfig, tag, owner) { set_extensions(extensions); set_delay(delay); } - quickload_image_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock = 0U); + quickload_image_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock = XTAL()); virtual const char *image_type_name() const noexcept override { return "quickload"; } virtual const char *image_brief_type_name() const noexcept override { return "quik"; } |