about summary refs log tree commit diff stats
path: root/test/arch/x86/arch.py
diff options
context:
space:
mode:
authorserpilliere <serpilliere@users.noreply.github.com>2016-04-26 21:45:24 +0200
committerserpilliere <serpilliere@users.noreply.github.com>2016-04-26 21:45:24 +0200
commit75af8164a0b7286baf74b3af56bf4dfb17f01b2e (patch)
tree438f77c59c265a817a261452f81508d392a05bc4 /test/arch/x86/arch.py
parentd9b1edbf47f6ab253372286cd3508d30b4339e53 (diff)
parent259df2eabaf826c728222215d42ca0463906f745 (diff)
downloadmiasm-75af8164a0b7286baf74b3af56bf4dfb17f01b2e.tar.gz
miasm-75af8164a0b7286baf74b3af56bf4dfb17f01b2e.zip
Merge pull request #361 from mrphrazer/x86_opcodes
x86 arch: extended opcode decoding for MOVUPS
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 f3a01d97..d48a707c 100644
--- a/test/arch/x86/arch.py
+++ b/test/arch/x86/arch.py
@@ -2295,6 +2295,8 @@ reg_tests = [
 
     (m32, "00000000    MOVUPS     XMM2, XMMWORD PTR [ECX]",
      "0f1011"),
+    (m64, "00000000    MOVUPS     XMMWORD PTR [RCX+0x50], XMM1",
+     "0f114950"),
     (m32, "00000000    MOVSD      XMM2, QWORD PTR [ECX]",
      "f20f1011"),
     (m32, "00000000    MOVSD      XMM2, XMM1",
@@ -2669,6 +2671,8 @@ reg_tests = [
     "0F72D605"),
     (m32, "00000000    PSRLD      XMM6, 0x5",
     "660F72D605"),
+    (m64, "00000000    PSRLDQ     XMM0, 0x8",
+     "660f73d808"),
     (m32, "00000000    PSRLW      MM6, 0x5",
     "0F71D605"),
     (m32, "00000000    PSRLW      XMM6, 0x5",