Add hintable NOPs for Pentium Pro and II.

This commit is contained in:
SarahW 2020-06-30 20:19:58 +01:00
commit b973755ca3
3 changed files with 20 additions and 9 deletions

View file

@ -995,3 +995,14 @@ static int opSYSEXIT(uint32_t fetchdat)
CPU_BLOCK_END();
return 0;
}
static int opHINTNOP_a16(uint32_t fetchdat)
{
fetch_ea_16(fetchdat);
return 0;
}
static int opHINTNOP_a32(uint32_t fetchdat)
{
fetch_ea_32(fetchdat);
return 0;
}