about summary refs log tree commit diff stats
path: root/miasm2/arch/x86/arch.py
diff options
context:
space:
mode:
authorFabrice Desclaux <fabrice.desclaux@cea.fr>2015-02-09 13:52:17 +0100
committerFabrice Desclaux <fabrice.desclaux@cea.fr>2015-02-10 10:46:26 +0100
commitb540a053022515368523df1ff08117503a1f4f4d (patch)
tree99a49b7b3d3544ac69e7785723e446400bb38fbc /miasm2/arch/x86/arch.py
parenta3900fe1a46b585771a576478ce47bc94e35537f (diff)
downloadmiasm-b540a053022515368523df1ff08117503a1f4f4d.tar.gz
miasm-b540a053022515368523df1ff08117503a1f4f4d.zip
Arch/X86: fix jecx breakflow
Diffstat (limited to '')
-rw-r--r--miasm2/arch/x86/arch.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/miasm2/arch/x86/arch.py b/miasm2/arch/x86/arch.py
index 85356468..527c9d68 100644
--- a/miasm2/arch/x86/arch.py
+++ b/miasm2/arch/x86/arch.py
@@ -20,7 +20,9 @@ conditional_branch = ["JO", "JNO", "JB", "JAE",
                       "JZ", "JNZ", "JBE", "JA",
                       "JS", "JNS", "JPE", "JNP",
                       #"L", "NL", "NG", "G"]
-                      "JL", "JGE", "JLE", "JG"]
+                      "JL", "JGE", "JLE", "JG",
+                      "JCXZ", "JECXZ", "JRCXZ"]
+
 unconditional_branch = ['JMP']
 
 f_isad = "AD"