summaryrefslogtreecommitdiffstats
path: root/src/devices/cpu/m68000/m68k_in.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/m68000/m68k_in.cpp')
-rw-r--r--src/devices/cpu/m68000/m68k_in.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/m68000/m68k_in.cpp b/src/devices/cpu/m68000/m68k_in.cpp
index b5751811530..3ab098b308b 100644
--- a/src/devices/cpu/m68000/m68k_in.cpp
+++ b/src/devices/cpu/m68000/m68k_in.cpp
@@ -9198,8 +9198,8 @@ M68KMAKE_OP(sbcd, 8, rr, .)
res = MASK_OUT_ABOVE_8(res - corf);
- m_v_flag &= ~res; /* Undefined V behavior part II */
- m_n_flag = NFLAG_8(res); /* Undefined N behavior */
+ //m_v_flag &= ~res; /* Undefined V behavior part II */ // HBMAME - FIX FOR NEOGEO 90-SEC FIGHT
+ //m_n_flag = NFLAG_8(res); /* Undefined N behavior */ // HBMAME
m_not_z_flag |= res;
*r_dst = MASK_OUT_BELOW_8(*r_dst) | res;