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>2018-10-06 15:25:06 +0200
committerFabrice Desclaux <fabrice.desclaux@cea.fr>2018-10-06 22:34:17 +0200
commit0b31f415cb226e2fbda150556a925eba2b49b9f8 (patch)
tree48fd8e2f89493ff612f75784ee80495b4b6b8c30 /test/arch/x86/arch.py
parent369371ca24c5f4fd6670cb36b80fbd29650de7d0 (diff)
downloadmiasm-0b31f415cb226e2fbda150556a925eba2b49b9f8.tar.gz
miasm-0b31f415cb226e2fbda150556a925eba2b49b9f8.zip
X86: fix inc/dec 64bit
Diffstat (limited to 'test/arch/x86/arch.py')
-rw-r--r--test/arch/x86/arch.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/arch/x86/arch.py b/test/arch/x86/arch.py
index 44f5197e..b866a325 100644
--- a/test/arch/x86/arch.py
+++ b/test/arch/x86/arch.py
@@ -848,6 +848,9 @@ reg_tests = [
     (m32, "00000000    DEC        ECX",
      "49"),
 
+    (m64, "00000000    DEC        EBX",
+     "FFCB"),
+
     (m32, "00000000    DIV        BL",
      "f6f3"),
     (m32, "00000000    DIV        EBX",
@@ -1302,6 +1305,9 @@ reg_tests = [
     (m32, "00000000    INC        ECX",
      "41"),
 
+    (m64, "00000000    INC        EBX",
+     "FFC3"),
+
     (m32, "00000000    INT        0x3",
      "CC"),
     (m32, "00000000    INT        0x21",