summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/adb/adb.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/adb/adb.h
parent5c14bcdfcb4aefb71b5b62387c4ad05dbeb3814e (diff)
full xtal conversionxtal
Diffstat (limited to 'src/devices/bus/adb/adb.h')
-rw-r--r--src/devices/bus/adb/adb.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/bus/adb/adb.h b/src/devices/bus/adb/adb.h
index e6b15e8f61d..db4be20dcf5 100644
--- a/src/devices/bus/adb/adb.h
+++ b/src/devices/bus/adb/adb.h
@@ -20,7 +20,7 @@ class adb_connector: public device_t, public device_single_card_slot_interface<a
public:
template <typename T>
adb_connector(const machine_config &mconfig, const char *tag, device_t *owner, T &&opts, const char *dflt, bool fixed = false)
- : adb_connector(mconfig, tag, owner, 0)
+ : adb_connector(mconfig, tag, owner)
{
option_reset();
opts(*this);
@@ -28,7 +28,7 @@ public:
set_fixed(fixed);
}
- adb_connector(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock = 0);
+ adb_connector(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock = XTAL());
virtual ~adb_connector() = default;
adb_device *get_device();
@@ -58,7 +58,7 @@ public:
static void default_devices(device_slot_interface &device);
protected:
- adb_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock);
+ adb_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, const XTAL &clock);
virtual void device_start() override;
virtual void device_reset() override;