diff options
author | 2022-06-16 12:47:52 +0200 | |
---|---|---|
committer | 2025-04-29 23:06:41 +0200 | |
commit | 45d4cd52a8194f2ef9e0383cfb2e2a35634af6ff (patch) | |
tree | 4e8d8fcb7382a5e9e0bce5ec59939bcfbe67155a /src/devices/bus/abcbus/abc890.h | |
parent | 5c14bcdfcb4aefb71b5b62387c4ad05dbeb3814e (diff) |
full xtal conversionxtal
Diffstat (limited to 'src/devices/bus/abcbus/abc890.h')
-rw-r--r-- | src/devices/bus/abcbus/abc890.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/devices/bus/abcbus/abc890.h b/src/devices/bus/abcbus/abc890.h index 5a56b9804fe..70f5b97e838 100644 --- a/src/devices/bus/abcbus/abc890.h +++ b/src/devices/bus/abcbus/abc890.h @@ -26,10 +26,10 @@ class abc890_device : public device_t, { public: // construction/destruction - abc890_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + abc890_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); protected: - abc890_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock); + abc890_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; @@ -58,7 +58,7 @@ class abc_expansion_unit_device : public abc890_device { public: // construction/destruction - abc_expansion_unit_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + abc_expansion_unit_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); protected: // optional information overrides @@ -72,7 +72,7 @@ class abc894_device : public abc890_device { public: // construction/destruction - abc894_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + abc894_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); protected: // optional information overrides @@ -86,7 +86,7 @@ class abc850_device : public abc890_device { public: // construction/destruction - abc850_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + abc850_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); protected: // optional information overrides @@ -100,7 +100,7 @@ class abc852_device : public abc890_device { public: // construction/destruction - abc852_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + abc852_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); protected: // optional information overrides @@ -114,7 +114,7 @@ class abc856_device : public abc890_device { public: // construction/destruction - abc856_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + abc856_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); protected: // optional information overrides |