mirror of
https://github.com/holub/mame
synced 2025-06-06 04:43:45 +03:00
dp8344.cpp: Remove erroneous fallthrough
This commit is contained in:
parent
bd343adb1a
commit
b3e4af560a
@ -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));
|
||||
|
Loading…
Reference in New Issue
Block a user