diff options
Diffstat (limited to 'src/devices/machine/lpc-pit.cpp')
-rw-r--r-- | src/devices/machine/lpc-pit.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/machine/lpc-pit.cpp b/src/devices/machine/lpc-pit.cpp index e15f1893045..3c18f762be7 100644 --- a/src/devices/machine/lpc-pit.cpp +++ b/src/devices/machine/lpc-pit.cpp @@ -13,7 +13,7 @@ void lpc_pit_device::map(address_map &map) map(0x53, 0x53).w(FUNC(lpc_pit_device::control_w)); } -lpc_pit_device::lpc_pit_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) +lpc_pit_device::lpc_pit_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock) : lpc_device(mconfig, LPC_PIT, tag, owner, clock) { } |