From ce8a482a62b0a7b0fd2525771674d4f9f3080006 Mon Sep 17 00:00:00 2001 From: ptitSeb Date: Mon, 8 Mar 2021 17:10:17 +0100 Subject: Added 66 85 TEST opcode --- src/emu/x64run66.c | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'src') 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); -- cgit 1.4.1