about summary refs log tree commit diff stats
path: root/test/arch/x86/arch.py
diff options
context:
space:
mode:
authorAjax <commial@gmail.com>2018-02-09 14:51:30 +0100
committerAjax <commial@gmail.com>2018-02-09 17:36:31 +0100
commit971b683a5f068068a2d775d5807deacd13918cf9 (patch)
tree88f1d24475dbcbd6f4d06d07910b156e6e98a9e6 /test/arch/x86/arch.py
parent8d6b88e240f860b5d41244b5d1f16ea88a2d1cb0 (diff)
downloadmiasm-971b683a5f068068a2d775d5807deacd13918cf9.tar.gz
miasm-971b683a5f068068a2d775d5807deacd13918cf9.zip
Add MASKMOVQ/MASKMOVDQU instruction
Diffstat (limited to '')
-rw-r--r--test/arch/x86/arch.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/arch/x86/arch.py b/test/arch/x86/arch.py
index 68bc1304..f491c19a 100644
--- a/test/arch/x86/arch.py
+++ b/test/arch/x86/arch.py
@@ -3069,6 +3069,11 @@ reg_tests = [
      "0fe3d9"),
     (m32, "00000000    PAVGW      XMM0, XMM6",
      "660fe3c6"),
+
+    (m32, "00000000    MASKMOVQ   MM2, MM3",
+     "0ff7d3"),
+    (m32, "00000000    MASKMOVDQU XMM4, XMM5",
+     "660ff7e5"),
 ]