summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/edlc.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/machine/edlc.h
parent5c14bcdfcb4aefb71b5b62387c4ad05dbeb3814e (diff)
full xtal conversionxtal
Diffstat (limited to 'src/devices/machine/edlc.h')
-rw-r--r--src/devices/machine/edlc.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/machine/edlc.h b/src/devices/machine/edlc.h
index bbcd91d2589..26c9321e83e 100644
--- a/src/devices/machine/edlc.h
+++ b/src/devices/machine/edlc.h
@@ -19,7 +19,7 @@ public:
auto out_rxrdy_cb() { return m_out_rxrdy.bind(); }
auto out_txrdy_cb() { return m_out_txrdy.bind(); }
- seeq8003_device(machine_config const &mconfig, char const *tag, device_t *owner, u32 clock = 0);
+ seeq8003_device(machine_config const &mconfig, char const *tag, device_t *owner, const XTAL &clock = XTAL());
// register interface
virtual void map(address_map &map);
@@ -36,7 +36,7 @@ public:
void fifo_w(u8 data);
protected:
- seeq8003_device(machine_config const &mconfig, device_type type, char const *tag, device_t *owner, u32 clock = 0);
+ seeq8003_device(machine_config const &mconfig, device_type type, char const *tag, device_t *owner, const XTAL &clock = XTAL());
// device_t overrides
virtual void device_start() override;
@@ -143,7 +143,7 @@ protected:
class seeq80c03_device : public seeq8003_device
{
public:
- seeq80c03_device(machine_config const &mconfig, char const *tag, device_t *owner, u32 clock = 0);
+ seeq80c03_device(machine_config const &mconfig, char const *tag, device_t *owner, const XTAL &clock = XTAL());
// register interface
virtual void map(address_map &map) override;