diff options
author | iximeow <me@iximeow.net> | 2020-08-03 01:55:36 -0700 |
---|---|---|
committer | iximeow <me@iximeow.net> | 2020-08-09 01:38:57 -0700 |
commit | b71ce923b78c1535dd3b1512bb9edad28a9808ce (patch) | |
tree | 4cecabd0cdad482b6105946da8afb39017aeb917 /src/long_mode/vex.rs | |
parent | 97f1c7e15a35df264dae91d76660db4762bd5d25 (diff) |
vpminsw
Diffstat (limited to 'src/long_mode/vex.rs')
-rw-r--r-- | src/long_mode/vex.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/long_mode/vex.rs b/src/long_mode/vex.rs index 8325e3f..bab8167 100644 --- a/src/long_mode/vex.rs +++ b/src/long_mode/vex.rs @@ -1364,6 +1364,11 @@ fn read_vex_instruction<T: Iterator<Item=u8>>(opcode_map: VEXOpcodeMap, bytes: & } else { VEXOperandCode::G_V_E_xmm }), + 0xEA => (Opcode::VPMINSW, if L { + VEXOperandCode::G_V_E_ymm + } else { + VEXOperandCode::G_V_E_xmm + }), 0xEB => (Opcode::VPOR, if L { VEXOperandCode::G_V_E_ymm } else { |