Files
86Box/src/CPU/x86_ops_rep.h

13 lines
213 B
C
Raw Normal View History

/* Copyright holders: Sarah Walker
see COPYING for more details
*/
static int opREPNE(uint32_t fetchdat)
{
return rep386(0);
}
static int opREPE(uint32_t fetchdat)
{
return rep386(1);
}