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
|
|
@ -422,11 +422,17 @@ void codegen_timing_winchip_block_end()
|
|||
{
|
||||
}
|
||||
|
||||
int codegen_timing_winchip_jump_cycles()
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
codegen_timing_t codegen_timing_winchip =
|
||||
{
|
||||
codegen_timing_winchip_start,
|
||||
codegen_timing_winchip_prefix,
|
||||
codegen_timing_winchip_opcode,
|
||||
codegen_timing_winchip_block_start,
|
||||
codegen_timing_winchip_block_end
|
||||
codegen_timing_winchip_block_end,
|
||||
codegen_timing_winchip_jump_cycles
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in a new issue