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/bus/vc4000/slot.h | |
parent | 5c14bcdfcb4aefb71b5b62387c4ad05dbeb3814e (diff) |
full xtal conversionxtal
Diffstat (limited to 'src/devices/bus/vc4000/slot.h')
-rw-r--r-- | src/devices/bus/vc4000/slot.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/bus/vc4000/slot.h b/src/devices/bus/vc4000/slot.h index 90f75232699..50f70b0ca1f 100644 --- a/src/devices/bus/vc4000/slot.h +++ b/src/devices/bus/vc4000/slot.h @@ -59,14 +59,14 @@ public: // construction/destruction template <typename T> vc4000_cart_slot_device(const machine_config &mconfig, const char *tag, device_t *owner, T &&opts, char const *dflt) - : vc4000_cart_slot_device(mconfig, tag, owner, (uint32_t)0) + : vc4000_cart_slot_device(mconfig, tag, owner) { option_reset(); opts(*this); set_default_option(dflt); set_fixed(false); } - vc4000_cart_slot_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + vc4000_cart_slot_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock = XTAL()); virtual ~vc4000_cart_slot_device(); // image-level overrides @@ -111,14 +111,14 @@ public: // construction/destruction template <typename T> h21_cart_slot_device(const machine_config &mconfig, const char *tag, device_t *owner, T &&opts, char const *dflt) - : h21_cart_slot_device(mconfig, tag, owner, (uint32_t)0) + : h21_cart_slot_device(mconfig, tag, owner) { option_reset(); opts(*this); set_default_option(dflt); set_fixed(false); } - h21_cart_slot_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + h21_cart_slot_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock = XTAL()); virtual ~h21_cart_slot_device(); virtual const char *image_interface() const noexcept override { return "h21_cart"; } |