Files
86Box/src/x86_ops_rep.h

10 lines
143 B
C
Raw Normal View History

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