mirror of
https://github.com/holub/mame
synced 2025-04-23 00:39:36 +03:00
fix I8096 JNH/JH opcode according to manual
This makes the CM-32P Orch. Hit patch work.
This commit is contained in:
parent
539598fab4
commit
f164071ad9
@ -1703,7 +1703,7 @@ d0 jnst rel8
|
||||
}
|
||||
|
||||
d1 jnh rel8
|
||||
if((PSW & (F_C|F_N)) != F_C) {
|
||||
if((PSW & (F_C|F_Z)) != F_C) {
|
||||
PC += OP1;
|
||||
next(8);
|
||||
} else {
|
||||
@ -1769,7 +1769,7 @@ d8 jst rel8
|
||||
}
|
||||
|
||||
d9 jh rel8
|
||||
if((PSW & (F_C|F_N)) == F_C) {
|
||||
if((PSW & (F_C|F_Z)) == F_C) {
|
||||
PC += OP1;
|
||||
next(8);
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user