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/pci-usb.cpp | |
parent | 5c14bcdfcb4aefb71b5b62387c4ad05dbeb3814e (diff) |
full xtal conversionxtal
Diffstat (limited to 'src/devices/machine/pci-usb.cpp')
-rw-r--r-- | src/devices/machine/pci-usb.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/machine/pci-usb.cpp b/src/devices/machine/pci-usb.cpp index 0b45c1bd9ee..28523013576 100644 --- a/src/devices/machine/pci-usb.cpp +++ b/src/devices/machine/pci-usb.cpp @@ -11,7 +11,7 @@ void usb_ohci_device::map(address_map &map) { } -usb_ohci_device::usb_ohci_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) +usb_ohci_device::usb_ohci_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock) : pci_device(mconfig, USB_OHCI, tag, owner, clock) { } @@ -31,7 +31,7 @@ void usb_uhci_device::map(address_map &map) { } -usb_uhci_device::usb_uhci_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) +usb_uhci_device::usb_uhci_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock) : pci_device(mconfig, USB_UHCI, tag, owner, clock) { } @@ -51,7 +51,7 @@ void usb_ehci_device::map(address_map &map) { } -usb_ehci_device::usb_ehci_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) +usb_ehci_device::usb_ehci_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock) : pci_device(mconfig, USB_EHCI, tag, owner, clock) { } |