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:16:29 +0100
committerAjax <commial@gmail.com>2018-02-09 17:36:31 +0100
commit8d6b88e240f860b5d41244b5d1f16ea88a2d1cb0 (patch)
treebd865249eb4c43d7b3e3ba1ac8b21e1ca0dd4f3d /test/arch/x86/arch.py
parentcb95c1f581cfded596cc38d8832361c053f3e4cd (diff)
downloadmiasm-8d6b88e240f860b5d41244b5d1f16ea88a2d1cb0.tar.gz
miasm-8d6b88e240f860b5d41244b5d1f16ea88a2d1cb0.zip
Fix PEXTRW 0F C5 form
Diffstat (limited to 'test/arch/x86/arch.py')
-rw-r--r--test/arch/x86/arch.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/arch/x86/arch.py b/test/arch/x86/arch.py
index f1f95d46..68bc1304 100644
--- a/test/arch/x86/arch.py
+++ b/test/arch/x86/arch.py
@@ -2902,11 +2902,11 @@ reg_tests = [
     (m32, "00000000    PEXTRW     WORD PTR [EDX], XMM2, 0x5",
     "660F3A151205"),
 
+    (m32, "00000000    PEXTRW     EAX, MM2, 0x5",
+    "0fc5c205"),
+    (m32, "00000000    PEXTRW     EAX, XMM2, 0x5",
+    "660fc5c205"),
 
-    (m32, "00000000    PEXTRW     WORD PTR [EDX], MM2, 0x5",
-    "0FC51205"),
-    (m32, "00000000    PEXTRW     WORD PTR [EDX], XMM2, 0x5",
-    "660FC51205"),
 
     (m32, "00000000    PEXTRD     DWORD PTR [EDX], XMM2, 0x5",
     "660F3A161205"),