Initial commit of dynamic recompiler.
Various CPU changes to support dynamic recompiler.
This commit is contained in:
parent
17cae8a2d7
commit
4676daade4
52 changed files with 3740 additions and 1139 deletions
|
|
@ -630,7 +630,10 @@ void resetx86()
|
|||
// cs=0xFFFF0;
|
||||
pc=0;
|
||||
msw=0;
|
||||
cr0=0;
|
||||
if (is486)
|
||||
cr0 = 1 << 30;
|
||||
else
|
||||
cr0 = 0;
|
||||
cr4 = 0;
|
||||
eflags=0;
|
||||
cgate32=0;
|
||||
|
|
|
|||
Loading…
Reference in a new issue