diff options
| author | serpilliere <devnull@localhost> | 2014-06-16 14:31:58 +0200 |
|---|---|---|
| committer | serpilliere <devnull@localhost> | 2014-06-16 14:31:58 +0200 |
| commit | a69e745e8bd937789e527f8ce2cd986451819dd1 (patch) | |
| tree | f5044cd63448ae8961dbd188971eb8a95f313278 /miasm2/arch/arm/arch.py | |
| parent | c7165bd6bc403676d5fb6d1822776b69f0b1217e (diff) | |
| download | miasm-a69e745e8bd937789e527f8ce2cd986451819dd1.tar.gz miasm-a69e745e8bd937789e527f8ce2cd986451819dd1.zip | |
Arm sem: add mnemonics (tx to nsarlin)
TODO: fix cf shifters
Diffstat (limited to '')
| -rw-r--r-- | miasm2/arch/arm/arch.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miasm2/arch/arm/arch.py b/miasm2/arch/arm/arch.py index 3c219710..b169d608 100644 --- a/miasm2/arch/arm/arch.py +++ b/miasm2/arch/arm/arch.py @@ -366,7 +366,7 @@ class instruction_armt(instruction_arm): self.args[0] = s def breakflow(self): - if self.name in ['B', 'BL', 'BLX', + if self.name in ['B', 'BX', 'BL', 'BLX', 'BEQ', 'BNE', 'BCS', 'BCC', 'BMI', 'BPL', 'BVS', 'BVC', 'BHI', 'BLS', 'BGE', 'BLT', 'BGT', 'BLE', 'CBZ', 'CBNZ']: |