mirror of
https://github.com/86Box/86Box.git
synced 2026-02-23 01:48:21 -07:00
10 lines
143 B
C
10 lines
143 B
C
static int opREPNE(uint32_t fetchdat)
|
|
{
|
|
return rep386(0);
|
|
}
|
|
static int opREPE(uint32_t fetchdat)
|
|
{
|
|
return rep386(1);
|
|
}
|
|
|