about summary refs log tree commit diff stats
path: root/test/arch/x86/arch.py
diff options
context:
space:
mode:
authorTim Blazytko <tim.blazytko@rub.de>2016-04-27 13:19:09 +0200
committerTim Blazytko <tim.blazytko@rub.de>2016-04-27 14:41:15 +0200
commit8eb0ecb6c1f26b11695bf71451b6b582f10c1c24 (patch)
treede160d080b66897c4967d2393fa3da82ac6a061a /test/arch/x86/arch.py
parent922ade0605f1dcdbf3b664ca7cae8b6e0da4dc1f (diff)
downloadmiasm-8eb0ecb6c1f26b11695bf71451b6b582f10c1c24.tar.gz
miasm-8eb0ecb6c1f26b11695bf71451b6b582f10c1c24.zip
x86 arch: added x86 opcode decoding for SHUFPS
Diffstat (limited to '')
-rw-r--r--test/arch/x86/arch.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/arch/x86/arch.py b/test/arch/x86/arch.py
index 0131bbb9..bee61a4b 100644
--- a/test/arch/x86/arch.py
+++ b/test/arch/x86/arch.py
@@ -2903,6 +2903,9 @@ reg_tests = [
     (m32, "00000000    PMOVMSKB   EAX, XMM7",
      "660FD7C7"),
 
+    (m64, "00000000    SHUFPS     XMM0, XMM6, 0x44",
+     "0fc6c644"),
+
 
 ]