mirror of
https://github.com/holub/mame
synced 2025-07-01 08:18:59 +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:
|
case 0x5000:
|
||||||
m_source_data |= (m_latched_instr & 0x0ff0) >> 4;
|
m_source_data |= (m_latched_instr & 0x0ff0) >> 4;
|
||||||
set_nz(m_source_data);
|
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;
|
break;
|
||||||
|
|
||||||
case 0x6000:
|
case 0x6000:
|
||||||
m_source_data ^= (m_latched_instr & 0x0ff0) >> 4;
|
m_source_data ^= (m_latched_instr & 0x0ff0) >> 4;
|
||||||
set_nz(m_source_data);
|
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;
|
break;
|
||||||
|
|
||||||
case 0x7000:
|
case 0x7000:
|
||||||
|
Loading…
Reference in New Issue
Block a user