diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/emu/x64run66.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/emu/x64run66.c b/src/emu/x64run66.c index c112fd97..a8c76926 100644 --- a/src/emu/x64run66.c +++ b/src/emu/x64run66.c @@ -75,6 +75,13 @@ int Run66(x64emu_t *emu, rex_t rex) } break; + case 0x85: /* TEST Ew,Gw */ + nextop = F8; + GETEW(0); + GETGW; + test16(emu, EW->word[0], GW->word[0]); + break; + case 0x89: /* MOV Ew,Gw */ nextop = F8; GETEW(0); |