summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/scn_pci.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/scn_pci.h
parent5c14bcdfcb4aefb71b5b62387c4ad05dbeb3814e (diff)
full xtal conversionxtal
Diffstat (limited to 'src/devices/machine/scn_pci.h')
-rw-r--r--src/devices/machine/scn_pci.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/devices/machine/scn_pci.h b/src/devices/machine/scn_pci.h
index acb16e90f72..86898859799 100644
--- a/src/devices/machine/scn_pci.h
+++ b/src/devices/machine/scn_pci.h
@@ -100,7 +100,7 @@ protected:
};
// construction/destruction
- scn_pci_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, u32 clock, const u16 *br_div, bool is_enhanced, bool is_aci);
+ scn_pci_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, const XTAL &clock, const u16 *br_div, bool is_enhanced, bool is_aci);
// device-level overrides
virtual void device_resolve_objects() override;
@@ -215,7 +215,7 @@ class scn2651_device : public scn_pci_device
{
public:
// device type constructor
- scn2651_device(const machine_config &mconfig, const char *tag, device_t *owner, u32 clock);
+ scn2651_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock);
};
// ======================> scn2661a_device
@@ -224,7 +224,7 @@ class scn2661a_device : public scn_pci_device
{
public:
// device type constructor
- scn2661a_device(const machine_config &mconfig, const char *tag, device_t *owner, u32 clock);
+ scn2661a_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock);
};
// ======================> scn2661b_device
@@ -233,7 +233,7 @@ class scn2661b_device : public scn_pci_device
{
public:
// device type constructor
- scn2661b_device(const machine_config &mconfig, const char *tag, device_t *owner, u32 clock);
+ scn2661b_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock);
};
// ======================> scn2661c_device
@@ -242,7 +242,7 @@ class scn2661c_device : public scn_pci_device
{
public:
// device type constructor
- scn2661c_device(const machine_config &mconfig, const char *tag, device_t *owner, u32 clock);
+ scn2661c_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock);
};
// ======================> scn2641_device
@@ -251,7 +251,7 @@ class scn2641_device : public scn_pci_device
{
public:
// device type constructor
- scn2641_device(const machine_config &mconfig, const char *tag, device_t *owner, u32 clock);
+ scn2641_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock);
// callback configuration
auto intr_handler() { return m_intr_callback.bind(); }