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/machine/lpci.h | |
parent | 5c14bcdfcb4aefb71b5b62387c4ad05dbeb3814e (diff) |
full xtal conversionxtal
Diffstat (limited to 'src/devices/machine/lpci.h')
-rw-r--r-- | src/devices/machine/lpci.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/machine/lpci.h b/src/devices/machine/lpci.h index fb289d5538f..e0d1e99ac08 100644 --- a/src/devices/machine/lpci.h +++ b/src/devices/machine/lpci.h @@ -26,12 +26,12 @@ public: typedef device_delegate<void (int function, int reg, uint32_t data, uint32_t mem_mask)> pci_bus_legacy_write_delegate; // construction/destruction - pci_bus_legacy_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock, uint8_t busnum) - : pci_bus_legacy_device(mconfig, tag, owner, clock) + pci_bus_legacy_device(const machine_config &mconfig, const char *tag, device_t *owner, uint8_t busnum) + : pci_bus_legacy_device(mconfig, tag, owner) { set_busnum(busnum); } - pci_bus_legacy_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + pci_bus_legacy_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock = XTAL()); uint32_t read(offs_t offset, uint32_t mem_mask = ~0); void write(offs_t offset, uint32_t data, uint32_t mem_mask = ~0); |