diff options
| author | Kartik <pokemonemerald0@gmail.com> | 2019-02-19 06:28:42 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-02-19 06:28:42 +0000 |
| commit | 2388cb38d48465e0315f05b55874e87d0f1252b6 (patch) | |
| tree | 6b592c6f0f08d5a67f1f3a2fd23476a0a0245b6d | |
| parent | f1a55139ca3ec35ac8267c3d377dc67f33829e29 (diff) | |
| download | miasm-2388cb38d48465e0315f05b55874e87d0f1252b6.tar.gz miasm-2388cb38d48465e0315f05b55874e87d0f1252b6.zip | |
Implement rev16 for arm
| -rw-r--r-- | miasm2/arch/arm/arch.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/miasm2/arch/arm/arch.py b/miasm2/arch/arm/arch.py index e7054b51..23ecc7d3 100644 --- a/miasm2/arch/arm/arch.py +++ b/miasm2/arch/arm/arch.py @@ -1694,6 +1694,7 @@ armop("sxtb", [bs('01101010'), bs('1111'), rd, rot_rm, bs('00'), bs('0111'), rm_ armop("sxth", [bs('01101011'), bs('1111'), rd, rot_rm, bs('00'), bs('0111'), rm_noarg]) armop("rev", [bs('01101011'), bs('1111'), rd, bs('1111'), bs('0011'), rm]) +armop("rev16", [bs('01101011'), bs('1111'), rd, bs('1111'), bs('1011'), rm]) armop("pld", [bs8(0xF5), bs_addi, bs_rw, bs('01'), mem_rn_imm, bs('1111'), imm12_off]) |