diff options
| author | jetsecurity <jetsecurity@protonmail.com> | 2018-09-25 23:23:38 +0200 |
|---|---|---|
| committer | jetsecurity <jetsecurity@protonmail.com> | 2018-09-27 23:44:54 +0200 |
| commit | 76b31e40288c779db98616583492f6b001c08700 (patch) | |
| tree | e443dbb97f9fd9d1eaf1b299ef4a656e025260eb | |
| parent | ab7f1f35d80841268760919d1d7a2b60df9b1dce (diff) | |
| download | miasm-76b31e40288c779db98616583492f6b001c08700.tar.gz miasm-76b31e40288c779db98616583492f6b001c08700.zip | |
ARM Thumb: Support BLX Rd instruction with Rd > R7
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 67d73592..d4ef3b4a 100644 --- a/miasm2/arch/arm/arch.py +++ b/miasm2/arch/arm/arch.py @@ -2373,7 +2373,7 @@ armtop("addsp", [bs('10110000'), bs_addsubsp_name, sp, off7], [sp, off7]) armtop("pushpop", [bs('1011'), bs_pushpop_name, bs('10'), pclr, trlistpclr], [trlistpclr]) armtop("btransfersp", [bs('1100'), bs_tbtransfer_name, rbl_wb, trlist]) armtop("br", [bs('1101'), bs_br_name, offs8]) -armtop("blx", [bs("01000111"), bs('10'), rnl, bs('000')]) +armtop("blx", [bs("01000111"), bs('1'), rm, bs('000')]) armtop("svc", [bs('11011111'), imm8]) armtop("b", [bs('11100'), offs11]) armtop("und", [bs('1101'), bs('1110'), imm8_d1]) |