summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/hexbus/hexbus.h
diff options
context:
space:
mode:
author Olivier Galibert <galibert@pobox.com>2022-06-16 12:47:52 +0200
committer Olivier Galibert <galibert@pobox.com>2025-04-29 23:06:41 +0200
commit45d4cd52a8194f2ef9e0383cfb2e2a35634af6ff (patch)
tree4e8d8fcb7382a5e9e0bce5ec59939bcfbe67155a /src/devices/bus/hexbus/hexbus.h
parent5c14bcdfcb4aefb71b5b62387c4ad05dbeb3814e (diff)
full xtal conversionxtal
Diffstat (limited to 'src/devices/bus/hexbus/hexbus.h')
-rw-r--r--src/devices/bus/hexbus/hexbus.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/bus/hexbus/hexbus.h b/src/devices/bus/hexbus/hexbus.h
index 1d225c55749..3b920d67afd 100644
--- a/src/devices/bus/hexbus/hexbus.h
+++ b/src/devices/bus/hexbus/hexbus.h
@@ -56,7 +56,7 @@ class hexbus_chained_device : public device_t, public device_hexbus_interface
friend class hexbus_device;
protected:
- hexbus_chained_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock);
+ hexbus_chained_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, const XTAL &clock);
void set_outbound_hexbus(hexbus_device *outbound) { m_hexbus_outbound = outbound; }
@@ -142,7 +142,7 @@ class hexbus_device : public device_t, public device_single_card_slot_interface<
{
public:
template <typename U>
- hexbus_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock, U &&opts, const char *dflt)
+ hexbus_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock, U &&opts, const char *dflt)
: hexbus_device(mconfig, tag, owner, clock)
{
option_reset();
@@ -151,7 +151,7 @@ public:
set_fixed(false);
}
- hexbus_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
+ hexbus_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock);
// Used to establish the reverse link (inbound)
void set_chain_element(hexbus_chained_device* chain) { m_chain_element = chain; }