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
|
|
@ -1,11 +1,9 @@
|
|||
static int opREPNE(uint32_t fetchdat)
|
||||
{
|
||||
rep386(0);
|
||||
return 0;
|
||||
return rep386(0);
|
||||
}
|
||||
static int opREPE(uint32_t fetchdat)
|
||||
{
|
||||
rep386(1);
|
||||
return 0;
|
||||
return rep386(1);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue