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/bus/isa/aha174x.cpp | |
parent | 5c14bcdfcb4aefb71b5b62387c4ad05dbeb3814e (diff) |
full xtal conversionxtal
Diffstat (limited to 'src/devices/bus/isa/aha174x.cpp')
-rw-r--r-- | src/devices/bus/isa/aha174x.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/devices/bus/isa/aha174x.cpp b/src/devices/bus/isa/aha174x.cpp index 1b212fe6ae2..945566c5d1d 100644 --- a/src/devices/bus/isa/aha174x.cpp +++ b/src/devices/bus/isa/aha174x.cpp @@ -42,7 +42,7 @@ DEFINE_DEVICE_TYPE(AHA1740, aha1740_device, "aha1740", "AHA-1740 Fast SCSI Host DEFINE_DEVICE_TYPE(AHA1742A, aha1742a_device, "aha1742a", "AHA-1742A Fast SCSI Host Adapter") -aha174x_device::aha174x_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, u32 clock) +aha174x_device::aha174x_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, const XTAL &clock) : device_t(mconfig, type, tag, owner, clock) , device_isa16_card_interface(mconfig, *this) , m_hpc(*this, "hpc") @@ -52,12 +52,12 @@ aha174x_device::aha174x_device(const machine_config &mconfig, device_type type, { } -aha1740_device::aha1740_device(const machine_config &mconfig, const char *tag, device_t *owner, u32 clock) +aha1740_device::aha1740_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock) : aha174x_device(mconfig, AHA1740, tag, owner, clock) { } -aha1742a_device::aha1742a_device(const machine_config &mconfig, const char *tag, device_t *owner, u32 clock) +aha1742a_device::aha1742a_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock) : aha174x_device(mconfig, AHA1742A, tag, owner, clock) , m_fdc(*this, "fdc") { @@ -94,7 +94,7 @@ void aha1740_device::device_add_mconfig(machine_config &config) m_busaic->hrst_callback().set_inputline(m_hpc, INPUT_LINE_RESET); //m_busaic->srst_callback().set_inputline(m_hpc, hpc_device::EI_LINE); - I82355(config, "bmic", 0); + I82355(config, "bmic"); //bmic.lint_callback().set_inputline(m_hpc, hpc_device::I2_LINE); IDT7201(config, m_fifo[0]); @@ -121,7 +121,7 @@ void aha1742a_device::device_add_mconfig(machine_config &config) m_busaic->hrst_callback().set_inputline(m_hpc, INPUT_LINE_RESET); //m_busaic->srst_callback().set_inputline(m_hpc, hpc_device::EI_LINE); - I82355(config, "bmic", 0); + I82355(config, "bmic"); //bmic.lint_callback().set_inputline(m_hpc, hpc_device::I2_LINE); IDT7201(config, m_fifo[0]); |