Ensure that taken jump/branch instructions do not count as 0 cycles. Fixes Windows 95 hang with K6.
This commit is contained in:
parent
1953f4afb9
commit
3c7d1b1204
8 changed files with 61 additions and 6 deletions
|
|
@ -743,11 +743,17 @@ static void codegen_timing_winchip2_block_end()
|
|||
}
|
||||
}
|
||||
|
||||
int codegen_timing_winchip2_jump_cycles()
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
codegen_timing_t codegen_timing_winchip2 =
|
||||
{
|
||||
codegen_timing_winchip2_start,
|
||||
codegen_timing_winchip2_prefix,
|
||||
codegen_timing_winchip2_opcode,
|
||||
codegen_timing_winchip2_block_start,
|
||||
codegen_timing_winchip2_block_end
|
||||
codegen_timing_winchip2_block_end,
|
||||
codegen_timing_winchip2_jump_cycles
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in a new issue