diff options
Diffstat (limited to '')
| -rw-r--r-- | miasm2/arch/x86/arch.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miasm2/arch/x86/arch.py b/miasm2/arch/x86/arch.py index 527c9d68..e75c22a9 100644 --- a/miasm2/arch/x86/arch.py +++ b/miasm2/arch/x86/arch.py @@ -23,7 +23,7 @@ conditional_branch = ["JO", "JNO", "JB", "JAE", "JL", "JGE", "JLE", "JG", "JCXZ", "JECXZ", "JRCXZ"] -unconditional_branch = ['JMP'] +unconditional_branch = ['JMP', 'JMPF'] f_isad = "AD" f_s08 = "S08" |