about summary refs log tree commit diff stats
path: root/test
diff options
context:
space:
mode:
authorFabrice Desclaux <fabrice.desclaux@cea.fr>2016-01-04 16:30:32 +0100
committerFabrice Desclaux <fabrice.desclaux@cea.fr>2016-01-06 09:32:02 +0100
commitb217de3aad8228e467661aada05575412120ebae (patch)
tree6d658a76105e17dff0789662287369c9c6eba6b0 /test
parent5b71335511aaf47e2d0e46aef1cfd14234ae45f7 (diff)
downloadmiasm-b217de3aad8228e467661aada05575412120ebae.tar.gz
miasm-b217de3aad8228e467661aada05575412120ebae.zip
X86: add unpck[hl]p[sd]
Diffstat (limited to '')
-rw-r--r--test/arch/x86/arch.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/arch/x86/arch.py b/test/arch/x86/arch.py
index 00322037..a00c33cf 100644
--- a/test/arch/x86/arch.py
+++ b/test/arch/x86/arch.py
@@ -2799,6 +2799,17 @@ reg_tests = [
     (m64, "00000000    PEXTRQ     QWORD PTR [RDX], XMM2, 0x5",
     "66480F3A161205"),
 
+
+    (m32, "00000000    UNPCKHPS   XMM2, XMMWORD PTR [EDX]",
+     "0f1512"),
+    (m32, "00000000    UNPCKHPD   XMM2, XMMWORD PTR [EDX]",
+     "660f1512"),
+
+    (m32, "00000000    UNPCKLPS   XMM2, XMMWORD PTR [EDX]",
+     "0f1412"),
+    (m32, "00000000    UNPCKLPD   XMM2, XMMWORD PTR [EDX]",
+     "660f1412"),
+
 ]