mirror of
https://github.com/86Box/86Box.git
synced 2026-02-23 09:58:19 -07:00
13 lines
213 B
C
13 lines
213 B
C
/* 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);
|
|
}
|
|
|