Cycle counts for recompiled blocks now generated at compile time.
This commit is contained in:
parent
087f412d3f
commit
2905c43db8
43 changed files with 1142 additions and 730 deletions
|
|
@ -6,7 +6,7 @@ static int opINT3(uint32_t fetchdat)
|
|||
return 1;
|
||||
}
|
||||
x86_int_sw(3);
|
||||
cycles -= (is486) ? 44 : 59;
|
||||
CLOCK_CYCLES((is486) ? 44 : 59);
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
|
@ -71,7 +71,7 @@ static int opINTO(uint32_t fetchdat)
|
|||
x86_int_sw(4);
|
||||
return 1;
|
||||
}
|
||||
cycles -= 3;
|
||||
CLOCK_CYCLES(3);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue