summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/tanbus/tanex.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/tanbus/tanex.cpp')
-rw-r--r--src/devices/bus/tanbus/tanex.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/tanbus/tanex.cpp b/src/devices/bus/tanbus/tanex.cpp
index cf9fd8b893d..f99a9d6cdf4 100644
--- a/src/devices/bus/tanbus/tanex.cpp
+++ b/src/devices/bus/tanbus/tanex.cpp
@@ -117,7 +117,7 @@ void tanbus_tanex_device::device_add_mconfig(machine_config &config)
m_rs232->cts_handler().set(m_acia, FUNC(mos6551_device::write_cts));
/* via */
- VIA6522(config, m_via6522[0], DERIVED_CLOCK(1, 8));
+ MOS6522(config, m_via6522[0], DERIVED_CLOCK(1, 8));
m_via6522[0]->readpa_handler().set(FUNC(tanbus_tanex_device::via_0_in_a));
m_via6522[0]->writepa_handler().set(FUNC(tanbus_tanex_device::via_0_out_a));
m_via6522[0]->writepb_handler().set(FUNC(tanbus_tanex_device::via_0_out_b));
@@ -125,7 +125,7 @@ void tanbus_tanex_device::device_add_mconfig(machine_config &config)
m_via6522[0]->cb2_handler().set(FUNC(tanbus_tanex_device::via_0_out_cb2));
m_via6522[0]->irq_handler().set(m_irq_line, FUNC(input_merger_device::in_w<IRQ_VIA_0>));
- VIA6522(config, m_via6522[1], DERIVED_CLOCK(1, 8));
+ MOS6522(config, m_via6522[1], DERIVED_CLOCK(1, 8));
m_via6522[1]->writepa_handler().set(FUNC(tanbus_tanex_device::via_1_out_a));
m_via6522[1]->writepb_handler().set(FUNC(tanbus_tanex_device::via_1_out_b));
m_via6522[1]->ca2_handler().set(FUNC(tanbus_tanex_device::via_1_out_ca2));