mirror of
https://github.com/holub/mame
synced 2025-04-19 15:11:37 +03:00
m68000: fix the lst file too (nw)
This commit is contained in:
parent
ca5651dd05
commit
f54da1f7c8
@ -2798,7 +2798,7 @@ b1c0 f1c0 cmpa l A+-DXWLdxI 01:6 7:7 234fc:4
|
||||
u32 res = dst - src;
|
||||
|
||||
if (!m_cmpild_instr_callback.isnull())
|
||||
(m_cmpild_instr_callback)(*m_program, m_ir & 7, src, 0xffffffff);
|
||||
(m_cmpild_instr_callback)(m_ir & 7, src);
|
||||
|
||||
m_n_flag = NFLAG_32(res);
|
||||
m_not_z_flag = MASK_OUT_ABOVE_32(res);
|
||||
@ -7805,7 +7805,7 @@ e5c0 ffc0 roxl w A+-DXWL 01:8 7:14 234fc:5
|
||||
In particular, the Genesis/Megadrive games Gargoyles and Ex-Mutants need the TAS
|
||||
to fail to write back in order to function properly. */
|
||||
if (CPU_TYPE_IS_010_LESS() && !m_tas_write_callback.isnull())
|
||||
(m_tas_write_callback)(*m_program, ea, dst | 0x80, 0xff);
|
||||
(m_tas_write_callback)(ea, dst | 0x80);
|
||||
else
|
||||
m68ki_write_8(ea, dst | 0x80);
|
||||
|
||||
|
@ -11402,7 +11402,7 @@ void m68000_base_device::x0c80_cmpi_l_071234fc()
|
||||
u32 res = dst - src;
|
||||
|
||||
if (!m_cmpild_instr_callback.isnull())
|
||||
(m_cmpild_instr_callback)(*m_program, m_ir & 7, src, 0xffffffff);
|
||||
(m_cmpild_instr_callback)(m_ir & 7, src);
|
||||
|
||||
m_n_flag = NFLAG_32(res);
|
||||
m_not_z_flag = MASK_OUT_ABOVE_32(res);
|
||||
|
Loading…
Reference in New Issue
Block a user