Moved integer registers, PC and flags_* variables into new cpu_state structure. Reduces recompiled code size slightly, small speedup (1-3%).
This commit is contained in:
parent
1fe6233d4c
commit
c81a91fd72
52 changed files with 1494 additions and 1408 deletions
|
|
@ -67,7 +67,7 @@ static int opINTO(uint32_t fetchdat)
|
|||
}
|
||||
if (VF_SET())
|
||||
{
|
||||
oldpc = pc;
|
||||
oldpc = cpu_state.pc;
|
||||
x86_int_sw(4);
|
||||
return 1;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue