diff options
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 { |