summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/epson_qx
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/epson_qx')
-rw-r--r--src/devices/bus/epson_qx/multifont.cpp2
-rw-r--r--src/devices/bus/epson_qx/multifont.h2
-rw-r--r--src/devices/bus/epson_qx/option.cpp4
-rw-r--r--src/devices/bus/epson_qx/option.h4
4 files changed, 6 insertions, 6 deletions
diff --git a/src/devices/bus/epson_qx/multifont.cpp b/src/devices/bus/epson_qx/multifont.cpp
index 8349af95dea..38ab373e725 100644
--- a/src/devices/bus/epson_qx/multifont.cpp
+++ b/src/devices/bus/epson_qx/multifont.cpp
@@ -92,7 +92,7 @@ INPUT_PORTS_END
//-------------------------------------------------
// multifont_device - constructor
//-------------------------------------------------
-multifont_device::multifont_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) :
+multifont_device::multifont_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock) :
device_t(mconfig, EPSON_QX_OPTION_MULTIFONT, tag, owner, clock),
device_option_expansion_interface(mconfig, *this),
m_mcu(*this, "mcu"),
diff --git a/src/devices/bus/epson_qx/multifont.h b/src/devices/bus/epson_qx/multifont.h
index 85cd6739286..7e9839f2d90 100644
--- a/src/devices/bus/epson_qx/multifont.h
+++ b/src/devices/bus/epson_qx/multifont.h
@@ -27,7 +27,7 @@ class multifont_device : public device_t, public bus::epson_qx::device_option_ex
{
public:
// construction/destruction
- multifont_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
+ multifont_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock);
protected:
// device-level overrides
diff --git a/src/devices/bus/epson_qx/option.cpp b/src/devices/bus/epson_qx/option.cpp
index 5b6ad3a0f3e..7096be2d10c 100644
--- a/src/devices/bus/epson_qx/option.cpp
+++ b/src/devices/bus/epson_qx/option.cpp
@@ -24,7 +24,7 @@ namespace bus::epson_qx {
//-------------------------------------------------
// option_bus_slot_device - constructor
//-------------------------------------------------
-option_slot_device::option_slot_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) :
+option_slot_device::option_slot_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock) :
device_t(mconfig, EPSON_QX_OPTION_BUS_SLOT, tag, owner, clock),
device_single_card_slot_interface<device_option_expansion_interface>(mconfig, *this),
m_bus(*this, finder_base::DUMMY_TAG),
@@ -79,7 +79,7 @@ WRITE_LINE_MEMBER(option_slot_device::rdys_w) { (*m_bus).set_rdys_line(state, m_
//-------------------------------------------------
// option_bus_device - constructor
//-------------------------------------------------
-option_bus_device::option_bus_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) :
+option_bus_device::option_bus_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock) :
device_t(mconfig, EPSON_QX_OPTION_BUS, tag, owner, clock),
m_iospace(*this, finder_base::DUMMY_TAG, -1),
m_inth1_cb(*this),
diff --git a/src/devices/bus/epson_qx/option.h b/src/devices/bus/epson_qx/option.h
index db74d46deb3..7103bc1990a 100644
--- a/src/devices/bus/epson_qx/option.h
+++ b/src/devices/bus/epson_qx/option.h
@@ -136,7 +136,7 @@ public:
m_bus.set_tag(std::forward<T>(bus_tag));
m_slot = slot;
}
- option_slot_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
+ option_slot_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock);
DECLARE_WRITE_LINE_MEMBER(inth1_w);
DECLARE_WRITE_LINE_MEMBER(inth2_w);
@@ -182,7 +182,7 @@ class option_bus_device : public device_t
{
public:
// construction/destruction
- option_bus_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
+ option_bus_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock);
template <typename T> void set_iospace(T &&tag, int spacenum) { m_iospace.set_tag(std::forward<T>(tag), spacenum); }
void set_memview(memory_view::memory_view_entry &view) { m_view = &view; }