diff options
| author | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2015-02-09 13:52:17 +0100 |
|---|---|---|
| committer | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2015-02-10 10:46:26 +0100 |
| commit | b540a053022515368523df1ff08117503a1f4f4d (patch) | |
| tree | 99a49b7b3d3544ac69e7785723e446400bb38fbc /miasm2/arch/x86/arch.py | |
| parent | a3900fe1a46b585771a576478ce47bc94e35537f (diff) | |
| download | miasm-b540a053022515368523df1ff08117503a1f4f4d.tar.gz miasm-b540a053022515368523df1ff08117503a1f4f4d.zip | |
Arch/X86: fix jecx breakflow
Diffstat (limited to '')
| -rw-r--r-- | miasm2/arch/x86/arch.py | 4 |
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" |