about summary refs log tree commit diff stats
path: root/test
diff options
context:
space:
mode:
authorCamille Mougey <commial@gmail.com>2016-06-20 12:15:09 +0200
committerGitHub <noreply@github.com>2016-06-20 12:15:09 +0200
commit6622c7f2ec25f6f9830ee741b4b1d70dbd76e1f9 (patch)
tree1742b56a2910b413f57c58ee31a61870950a2168 /test
parent8134c3b0c08889a7cf3d8c991bd6bc305b950b7d (diff)
parenta3b32c6910857b2f1249e94cceb7d4c13bb6c802 (diff)
downloadmiasm-6622c7f2ec25f6f9830ee741b4b1d70dbd76e1f9.tar.gz
miasm-6622c7f2ec25f6f9830ee741b4b1d70dbd76e1f9.zip
Merge pull request #380 from serpilliere/fix_x86_xchg
X86: add no_rex/fix xchg
Diffstat (limited to 'test')
-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 9a7f3d8a..db242236 100644
--- a/test/arch/x86/arch.py
+++ b/test/arch/x86/arch.py
@@ -2224,6 +2224,9 @@ reg_tests = [
     (m32, "00000000    NOP",
      "90"),
 
+    (m64, "00000000    XCHG       RAX, R8",
+     "4990"),
+
 
     (m32, "00000000    XCHG       BYTE PTR [EAX], AL",
      "8600"),