about summary refs log tree commit diff stats
path: root/test/arch/x86/arch.py
diff options
context:
space:
mode:
authorFabrice Desclaux <fabrice.desclaux@cea.fr>2015-12-23 20:57:58 +0100
committerFabrice Desclaux <fabrice.desclaux@cea.fr>2015-12-24 18:38:19 +0100
commit9955709c355d5b822730a9cf7e8bfd47a3773c48 (patch)
tree3a44515f35c08f193d8b46b22aef5b11aa4165b4 /test/arch/x86/arch.py
parentedbcc5c17d02788b92871d2e8db4c758e199d719 (diff)
downloadmiasm-9955709c355d5b822730a9cf7e8bfd47a3773c48.tar.gz
miasm-9955709c355d5b822730a9cf7e8bfd47a3773c48.zip
X86: add pmax
Diffstat (limited to 'test/arch/x86/arch.py')
-rw-r--r--test/arch/x86/arch.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/arch/x86/arch.py b/test/arch/x86/arch.py
index 3dd91581..27b426e2 100644
--- a/test/arch/x86/arch.py
+++ b/test/arch/x86/arch.py
@@ -2653,6 +2653,15 @@ reg_tests = [
     (m32, "00000000    PSLLW      XMM2, XMMWORD PTR [EDX]",
     "660FF112"),
 
+    (m32, "00000000    PMAXUB     MM2, QWORD PTR [EDX]",
+    "0FDE12"),
+    (m32, "00000000    PMAXUB     XMM2, XMMWORD PTR [EDX]",
+    "660FDE12"),
+
+    (m32, "00000000    PMAXUW     XMM2, XMMWORD PTR [EDX]",
+    "660F383E12"),
+    (m32, "00000000    PMAXUD     XMM2, XMMWORD PTR [EDX]",
+    "660F383F12"),
 
 ]