summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/te7750.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/te7750.h
parent5c14bcdfcb4aefb71b5b62387c4ad05dbeb3814e (diff)
full xtal conversionxtal
Diffstat (limited to 'src/devices/machine/te7750.h')
-rw-r--r--src/devices/machine/te7750.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/machine/te7750.h b/src/devices/machine/te7750.h
index 8417fbce51a..cd79352cefe 100644
--- a/src/devices/machine/te7750.h
+++ b/src/devices/machine/te7750.h
@@ -22,7 +22,7 @@ class te7750_device : public device_t
{
public:
// construction/destruction
- te7750_device(const machine_config &mconfig, const char *tag, device_t *owner, u32 clock = 0);
+ te7750_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock = XTAL());
// configuration
auto in_port1_cb() { return m_input_cb[0].bind(); }
@@ -50,7 +50,7 @@ public:
void write(offs_t offset, u8 data);
protected:
- te7750_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, u32 clock);
+ te7750_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, const XTAL &clock);
// device-level overrides
virtual void device_start() override;
@@ -78,7 +78,7 @@ private:
class te7751_device : public te7750_device
{
public:
- te7751_device(const machine_config &mconfig, const char *tag, device_t *owner, u32 clock = 0);
+ te7751_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock = XTAL());
};
// ======================> te7752_device
@@ -86,7 +86,7 @@ public:
class te7752_device : public te7750_device
{
public:
- te7752_device(const machine_config &mconfig, const char *tag, device_t *owner, u32 clock = 0);
+ te7752_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock = XTAL());
};
// device type definitions