summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/am79c90.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/am79c90.h
parent5c14bcdfcb4aefb71b5b62387c4ad05dbeb3814e (diff)
full xtal conversionxtal
Diffstat (limited to 'src/devices/machine/am79c90.h')
-rw-r--r--src/devices/machine/am79c90.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/machine/am79c90.h b/src/devices/machine/am79c90.h
index 80c66ff58ce..e884a949d6e 100644
--- a/src/devices/machine/am79c90.h
+++ b/src/devices/machine/am79c90.h
@@ -21,7 +21,7 @@ public:
void reset_w(int state) { if (!state) device_reset(); }
protected:
- am7990_device_base(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, u32 clock = 0);
+ am7990_device_base(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, const XTAL &clock = XTAL());
// device_t overrides
virtual void device_start() override;
@@ -175,7 +175,7 @@ private:
class am7990_device : public am7990_device_base
{
public:
- am7990_device(const machine_config &mconfig, const char *tag, device_t *owner, u32 clock = 0);
+ am7990_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock = XTAL());
protected:
virtual int get_buf_length(u16 data) const override { return (data == 0xf000) ? 4096 : -s16(0xf000 | data); }
@@ -184,7 +184,7 @@ protected:
class am79c90_device : public am7990_device_base
{
public:
- am79c90_device(const machine_config &mconfig, const char *tag, device_t *owner, u32 clock = 0);
+ am79c90_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock = XTAL());
protected:
virtual int get_buf_length(u16 data) const override { return data ? ((data == 0xf000) ? 4096 : -s16(0xf000 | data)) : 0; }