diff options
Diffstat (limited to 'src/emu')
| -rw-r--r-- | src/emu/x64run0f.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/emu/x64run0f.c b/src/emu/x64run0f.c index 6037f073..6ac0f0a6 100644 --- a/src/emu/x64run0f.c +++ b/src/emu/x64run0f.c @@ -1276,7 +1276,13 @@ int Run0F(x64emu_t *emu, rex_t rex) GM->uw[i] = (tmp32s < 0) ? 0 : tmp32s; } break; - + case 0xDA: /* PMINUB Gm,Em */ + nextop = F8; + GETEM(0); + GETGM; + for (int i=0; i<8; ++i) + GM->ub[i] = (GM->ub[i]<EM->ub[i])?GM->ub[i]:EM->ub[i]; + break; case 0xDB: /* PAND Gm,Em */ nextop = F8; GETEM(0); |