A lot of clean ups from waltje; Start of a directory structure for the code, thanks to waltje.
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);
|
|
}
|
|
|