Add hintable NOPs for Pentium Pro and II.
This commit is contained in:
parent
7eff4f4ba8
commit
b973755ca3
3 changed files with 20 additions and 9 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue