diff options
Diffstat (limited to 'src/devices/machine/i82439tx.h')
-rw-r--r-- | src/devices/machine/i82439tx.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/machine/i82439tx.h b/src/devices/machine/i82439tx.h index a2a9528b1dd..b925a7a4662 100644 --- a/src/devices/machine/i82439tx.h +++ b/src/devices/machine/i82439tx.h @@ -12,14 +12,14 @@ class i82439tx_host_device : public pci_host_device { public: template <typename T> - i82439tx_host_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock, T &&cpu_tag, int ram_size) + i82439tx_host_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock, T &&cpu_tag, int ram_size) : i82439tx_host_device(mconfig, tag, owner, clock) { set_ids_host(0x80867100, 0x03, 0x00000000); set_cpu_tag(std::forward<T>(cpu_tag)); set_ram_size(ram_size); } - i82439tx_host_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + i82439tx_host_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); template <typename T> void set_cpu_tag(T &&tag) { cpu.set_tag(std::forward<T>(tag)); } void set_ram_size(int ram_size); |