From 5603d0578982d2b8275bc1fa0538ccd97ba35fd0 Mon Sep 17 00:00:00 2001 From: iximeow Date: Mon, 3 Aug 2020 01:21:52 -0700 Subject: missing avx instr --- src/long_mode/vex.rs | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/long_mode/vex.rs') diff --git a/src/long_mode/vex.rs b/src/long_mode/vex.rs index c944532..02ce061 100644 --- a/src/long_mode/vex.rs +++ b/src/long_mode/vex.rs @@ -1330,6 +1330,11 @@ fn read_vex_instruction>(opcode_map: VEXOpcodeMap, bytes: & } else { VEXOperandCode::G_V_E_xmm }), + 0xDE => (Opcode::VPMAXUB, if L { + VEXOperandCode::G_V_E_ymm + } else { + VEXOperandCode::G_V_E_xmm + }), 0xDF => (Opcode::VPANDN, if L { VEXOperandCode::G_V_E_ymm } else { -- cgit v1.1