about summary refs log tree commit diff stats
path: root/test
diff options
context:
space:
mode:
authorserpilliere <serpilliere@users.noreply.github.com>2019-11-22 06:48:15 +0100
committerGitHub <noreply@github.com>2019-11-22 06:48:15 +0100
commit7ae7576c2a506806defa276d8c328c50f29d3ac3 (patch)
tree8674be92cbdb922a2977c2ec463e5606e2d2cafa /test
parentee9b0eccfcde5dbedd362080388dca2549695d5d (diff)
parent59bde86c6b4e3751327074355b59e814ad926b77 (diff)
downloadmiasm-7ae7576c2a506806defa276d8c328c50f29d3ac3.tar.gz
miasm-7ae7576c2a506806defa276d8c328c50f29d3ac3.zip
Merge pull request #1101 from serpilliere/add_x86_instr
X86: add instr
Diffstat (limited to 'test')
-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 68a14036..0455462d 100644
--- a/test/arch/x86/arch.py
+++ b/test/arch/x86/arch.py
@@ -1538,6 +1538,10 @@ reg_tests = [
     (m64, "00000000    MOVSXD     R8, EAX",
      "4c63c0"),
 
+    (m32, "XXXXXXXX    MOVNTI     DWORD PTR [ECX + 0xFFFFFFFC], EDX",
+    "0fc351fc"),
+    (m64, "XXXXXXXX    MOVNTI     QWORD PTR [RCX + 0xFFFFFFFFFFFFFFFC], R10",
+    "4C0FC351FC"),
 
     (m32, "00000000    MUL        BYTE PTR [EAX]",
      "f620"),