Fix minor bug in Pentium prefix timing.
This commit is contained in:
parent
1b7a821eff
commit
2505dee5e8
1 changed files with 1 additions and 1 deletions
|
|
@ -962,7 +962,7 @@ void codegen_timing_pentium_prefix(uint8_t prefix, uint32_t fetchdat)
|
||||||
last_prefix = prefix;
|
last_prefix = prefix;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (prefix == 0x0f && (opcode & 0xf0) == 0x80)
|
if (prefix == 0x0f && (fetchdat & 0xf0) == 0x80)
|
||||||
{
|
{
|
||||||
/*On Pentium 0fh prefix is 'free' when used on conditional jumps*/
|
/*On Pentium 0fh prefix is 'free' when used on conditional jumps*/
|
||||||
last_prefix = prefix;
|
last_prefix = prefix;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue