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-08 12:14:59 +0100
committerAjax <commial@gmail.com>2018-02-09 17:34:35 +0100
commit0c35bb71b6b3f32b2a62618f4b67ef87df81958d (patch)
tree1e1612f116e9f298a396890c302562fa88a29ebd /test/arch/x86/arch.py
parentd404b1803c09b61463845fe14feee5324cbdc051 (diff)
downloadmiasm-0c35bb71b6b3f32b2a62618f4b67ef87df81958d.tar.gz
miasm-0c35bb71b6b3f32b2a62618f4b67ef87df81958d.zip
Add PACKSSWB instruction
0F 63 /r PACKSSWB mm1, mm2/m64
66 0F 63 /r PACKSSWB xmm1, xmm2/m128
Diffstat (limited to 'test/arch/x86/arch.py')
-rw-r--r--test/arch/x86/arch.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/arch/x86/arch.py b/test/arch/x86/arch.py
index d3b2964c..b9bfec74 100644
--- a/test/arch/x86/arch.py
+++ b/test/arch/x86/arch.py
@@ -2970,6 +2970,10 @@ reg_tests = [
     (m64, "00000000    BNDMOV     BND3, XMMWORD PTR [RSP + 0xB0]",
      "660f1a9c24b0000000"),
 
+    (m32, "00000000    PACKSSWB   MM7, MM0",
+     "0f63f8"),
+    (m32, "00000000    PACKSSWB   XMM0, XMM5",
+     "660f63c5"),
 ]