pcem/src/x86_ops_rep.h
TomW 4676daade4 Initial commit of dynamic recompiler.
Various CPU changes to support dynamic recompiler.
2014-11-05 21:24:16 +00:00

9 lines
152 B
C

static int opREPNE(uint32_t fetchdat)
{
return rep386(0);
}
static int opREPE(uint32_t fetchdat)
{
return rep386(1);
}