diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2021-08-29 13:30:04 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2021-08-29 13:30:04 +0200 |
| commit | 04b9195cd2220b7d7d8d194556df73b7572ac949 (patch) | |
| tree | abd27479a634e331fba4488a0b1c963e38d9b3aa /src/emu | |
| parent | 3aa12a52eb7185a6675f6d59c63e31b94b4f1c0f (diff) | |
| download | box64-04b9195cd2220b7d7d8d194556df73b7572ac949.tar.gz box64-04b9195cd2220b7d7d8d194556df73b7572ac949.zip | |
Added 66 0F B7 opcode ([DYNAREC] too)
Diffstat (limited to 'src/emu')
| -rw-r--r-- | src/emu/x64run660f.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/emu/x64run660f.c b/src/emu/x64run660f.c index 2c6a364c..676656b7 100644 --- a/src/emu/x64run660f.c +++ b/src/emu/x64run660f.c @@ -1278,6 +1278,12 @@ int Run660F(x64emu_t *emu, rex_t rex) GETGW; GW->word[0] = EB->byte[0]; break; + case 0xB7: /* MOVZX Gw,Ew */ + nextop = F8; + GETEW(0); + GETGW; + GW->word[0] = EW->word[0]; + break; case 0xBA: nextop = F8; |