Add missing files from last commit.

This commit is contained in:
TomW 2013-05-27 19:56:33 +01:00
commit f822488656
89 changed files with 18428 additions and 6383 deletions

11
src/x86_ops_rep.h Normal file
View file

@ -0,0 +1,11 @@
static int opREPNE(uint32_t fetchdat)
{
rep386(0);
return 0;
}
static int opREPE(uint32_t fetchdat)
{
rep386(1);
return 0;
}