mirror of
https://github.com/holub/mame
synced 2025-06-30 16:00:01 +03:00
dp8344: Fix bizarre coding mistake (nw)
This commit is contained in:
parent
f06282380a
commit
6f9c1e4be2
@ -1616,13 +1616,13 @@ void dp8344_device::store_result()
|
||||
case 0x5000:
|
||||
m_source_data |= (m_latched_instr & 0x0ff0) >> 4;
|
||||
set_nz(m_source_data);
|
||||
write_register(m_latched_instr & 0x000f, m_source_data + ((m_latched_instr & 0x0ff0) >> 4));
|
||||
write_register(m_latched_instr & 0x000f, m_source_data);
|
||||
break;
|
||||
|
||||
case 0x6000:
|
||||
m_source_data ^= (m_latched_instr & 0x0ff0) >> 4;
|
||||
set_nz(m_source_data);
|
||||
write_register(m_latched_instr & 0x000f, m_source_data + ((m_latched_instr & 0x0ff0) >> 4));
|
||||
write_register(m_latched_instr & 0x000f, m_source_data);
|
||||
break;
|
||||
|
||||
case 0x7000:
|
||||
|
Loading…
Reference in New Issue
Block a user