diff options
Diffstat (limited to 'src/devices/bus/ep64')
-rw-r--r-- | src/devices/bus/ep64/exdos.cpp | 2 | ||||
-rw-r--r-- | src/devices/bus/ep64/exdos.h | 2 | ||||
-rw-r--r-- | src/devices/bus/ep64/exp.cpp | 2 | ||||
-rw-r--r-- | src/devices/bus/ep64/exp.h | 4 |
4 files changed, 5 insertions, 5 deletions
diff --git a/src/devices/bus/ep64/exdos.cpp b/src/devices/bus/ep64/exdos.cpp index 37f382955eb..d18378e053d 100644 --- a/src/devices/bus/ep64/exdos.cpp +++ b/src/devices/bus/ep64/exdos.cpp @@ -124,7 +124,7 @@ void ep64_exdos_device::device_add_mconfig(machine_config &config) // ep64_exdos_device - constructor //------------------------------------------------- -ep64_exdos_device::ep64_exdos_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) : +ep64_exdos_device::ep64_exdos_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock) : device_t(mconfig, EP64_EXDOS, tag, owner, clock), device_ep64_expansion_bus_card_interface(mconfig, *this), m_fdc(*this, WD1770_TAG), diff --git a/src/devices/bus/ep64/exdos.h b/src/devices/bus/ep64/exdos.h index cb5f9d47cc7..9407c1056af 100644 --- a/src/devices/bus/ep64/exdos.h +++ b/src/devices/bus/ep64/exdos.h @@ -29,7 +29,7 @@ class ep64_exdos_device : public device_t, { public: // construction/destruction - ep64_exdos_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + ep64_exdos_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); uint8_t read(); void write(uint8_t data); diff --git a/src/devices/bus/ep64/exp.cpp b/src/devices/bus/ep64/exp.cpp index ebd423cfc7f..293701edcae 100644 --- a/src/devices/bus/ep64/exp.cpp +++ b/src/devices/bus/ep64/exp.cpp @@ -43,7 +43,7 @@ device_ep64_expansion_bus_card_interface::device_ep64_expansion_bus_card_interfa // ep64_expansion_bus_slot_device - constructor //------------------------------------------------- -ep64_expansion_bus_slot_device::ep64_expansion_bus_slot_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) +ep64_expansion_bus_slot_device::ep64_expansion_bus_slot_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock) : device_t(mconfig, EP64_EXPANSION_BUS_SLOT, tag, owner, clock) , device_single_card_slot_interface<device_ep64_expansion_bus_card_interface>(mconfig, *this) , m_write_irq(*this) diff --git a/src/devices/bus/ep64/exp.h b/src/devices/bus/ep64/exp.h index 354d6f0691e..d5030e24e06 100644 --- a/src/devices/bus/ep64/exp.h +++ b/src/devices/bus/ep64/exp.h @@ -66,14 +66,14 @@ class ep64_expansion_bus_slot_device : public device_t, public: // construction/destruction ep64_expansion_bus_slot_device(machine_config const &mconfig, char const *tag, device_t *owner, char const *dflt) - : ep64_expansion_bus_slot_device(mconfig, tag, owner, (uint32_t)0) + : ep64_expansion_bus_slot_device(mconfig, tag, owner) { option_reset(); ep64_expansion_bus_cards(*this); set_default_option(dflt); set_fixed(false); } - ep64_expansion_bus_slot_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + ep64_expansion_bus_slot_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock = XTAL()); template <typename T> void set_program_space(T &&tag, int spacenum) { m_program_space.set_tag(std::forward<T>(tag), spacenum); } template <typename T> void set_io_space(T &&tag, int spacenum) { m_io_space.set_tag(std::forward<T>(tag), spacenum); } |