From b3e4af560a0cae70cd4b5736590ecbc8e9d81f2f Mon Sep 17 00:00:00 2001 From: AJR Date: Sat, 30 Jan 2021 12:29:54 -0500 Subject: [PATCH] dp8344.cpp: Remove erroneous fallthrough --- src/devices/cpu/bcp/dp8344.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/devices/cpu/bcp/dp8344.cpp b/src/devices/cpu/bcp/dp8344.cpp index 628334ea569..3e78cb0d0dd 100644 --- a/src/devices/cpu/bcp/dp8344.cpp +++ b/src/devices/cpu/bcp/dp8344.cpp @@ -1831,7 +1831,8 @@ void dp8344_device::store_result() write_register(m_latched_instr & 0x001f, m_source_data); break; } - [[fallthrough]]; // FIXME: really? + break; + case 0xe000: if (BIT(m_latched_instr, 11)) m_source_data = sub_nzcv(m_source_data, read_accumulator(), BIT(m_latched_instr, 10) && BIT(m_ccr, 1));