pcem/src/x86_ops_rep.h
2013-05-27 19:56:33 +01:00

11 lines
176 B
C

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