diff options
author | 2011-09-06 18:21:22 +0000 | |
---|---|---|
committer | 2011-09-06 18:21:22 +0000 | |
commit | 09b22beb5a2b9e81b255a4b4bb263d68b238b03f (patch) | |
tree | 86c573d7b361f047b714ff7678387e020fff1cc0 /src | |
parent | d1ab3ec79b80908d168cdcdfead490409df49ad3 (diff) |
software int (like BRK) doesn't change d flag (probably a leftover from G65816 sourcecode?)
Diffstat (limited to 'src')
-rw-r--r-- | src/emu/cpu/m37710/m37710op.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/emu/cpu/m37710/m37710op.h b/src/emu/cpu/m37710/m37710op.h index 2fbf1765f00..ba2da9fc85e 100644 --- a/src/emu/cpu/m37710/m37710op.h +++ b/src/emu/cpu/m37710/m37710op.h @@ -296,7 +296,6 @@ INLINE void m37710i_interrupt_software(m37710i_cpu_struct *cpustate, uint vector m37710i_push_16(cpustate, REG_PC); m37710i_push_8(cpustate, cpustate->ipl); m37710i_push_8(cpustate, m37710i_get_reg_p(cpustate)); - FLAG_D = DFLAG_CLEAR; m37710i_set_flag_i(cpustate, IFLAG_SET); REG_PB = 0; m37710i_jump_16(cpustate, m37710i_read_16_normal(cpustate, vector)); |