Remove test-USE32-and-mask-PC operation from interpreter as well.

This commit is contained in:
SarahW 2019-01-27 21:22:35 +00:00
commit 889ca7f3f2
3 changed files with 11 additions and 8 deletions

View file

@ -567,8 +567,6 @@ void exec386_dynarec(int cycs)
x86_opcodes[(opcode | cpu_state.op32) & 0x3ff](fetchdat);
}
if (!use32) cpu_state.pc &= 0xffff;
if (((cs + cpu_state.pc) >> 12) != pccache)
CPU_BLOCK_END();
@ -731,8 +729,6 @@ inrecomp=0;
break;
}
if (!use32) cpu_state.pc &= 0xffff;
/*Cap source code at 4000 bytes per block; this
will prevent any block from spanning more than
2 pages. In practice this limit will never be
@ -808,8 +804,6 @@ inrecomp=0;
break;
}
if (!use32) cpu_state.pc &= 0xffff;
/*Cap source code at 4000 bytes per block; this
will prevent any block from spanning more than
2 pages. In practice this limit will never be