summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author mahlemiut <bsr@xnet.co.nz>2021-02-03 10:47:22 +1300
committer GitHub <noreply@github.com>2021-02-03 10:47:22 +1300
commit93586b85c4bf8efd59ce2f7859bfc46931974238 (patch)
tree26efe7abc42f0ce326472c65957804db911cf986
parentcd062dfe3fefe4e9dcc6d3039fa8501cc77bb6e1 (diff)
parentafacb1e1f2b9c20b706109a94df71ae482db6a44 (diff)
Merge pull request #7741 from fergusleen/cpc_rs232_ri
Reinstated RI Handler
-rw-r--r--src/devices/bus/cpc/cpc_rs232.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/bus/cpc/cpc_rs232.cpp b/src/devices/bus/cpc/cpc_rs232.cpp
index b4148bbed34..4e387f9ab85 100644
--- a/src/devices/bus/cpc/cpc_rs232.cpp
+++ b/src/devices/bus/cpc/cpc_rs232.cpp
@@ -52,7 +52,7 @@ void cpc_rs232_device::device_add_mconfig(machine_config &config)
m_rs232->rxd_handler().set(m_dart, FUNC(z80dart_device::rxa_w));
m_rs232->dcd_handler().set(m_dart, FUNC(z80dart_device::dcda_w));
m_rs232->cts_handler().set(m_dart, FUNC(z80dart_device::ctsa_w));
-// m_rs232->ri_handler().set(m_dart, FUNC(z80dart_device::ria_w));
+ m_rs232->ri_handler().set(m_dart, FUNC(z80dart_device::ria_w));
// pass-through
cpc_expansion_slot_device &exp(CPC_EXPANSION_SLOT(config, "exp", DERIVED_CLOCK(1, 1), cpc_exp_cards, nullptr));