Initial commit of dynamic recompiler.

Various CPU changes to support dynamic recompiler.
This commit is contained in:
TomW 2014-11-05 21:24:16 +00:00
commit 4676daade4
52 changed files with 3740 additions and 1139 deletions

View file

@ -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);
}