Fixed MMX PANDN instruction.
This commit is contained in:
parent
26152e6522
commit
e00e489d5a
1 changed files with 2 additions and 2 deletions
|
|
@ -29,7 +29,7 @@ int opPANDN_a16(uint32_t fetchdat)
|
|||
fetch_ea_16(fetchdat);
|
||||
MMX_GETSRC();
|
||||
|
||||
MM[reg].q &= ~src.q;
|
||||
MM[reg].q = ~MM[reg].q & src.q;
|
||||
return 0;
|
||||
}
|
||||
int opPANDN_a32(uint32_t fetchdat)
|
||||
|
|
@ -40,7 +40,7 @@ int opPANDN_a32(uint32_t fetchdat)
|
|||
fetch_ea_32(fetchdat);
|
||||
MMX_GETSRC();
|
||||
|
||||
MM[reg].q &= ~src.q;
|
||||
MM[reg].q = ~MM[reg].q & src.q;
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue