diff options
| author | jetsecurity <jetsecurity@protonmail.com> | 2018-09-25 23:25:13 +0200 |
|---|---|---|
| committer | jetsecurity <jetsecurity@protonmail.com> | 2018-09-27 23:45:20 +0200 |
| commit | efcba9e3d0c14bb015380f73757a288f9cc6da2a (patch) | |
| tree | ab0cce23a4ba2ab64a0fa9e882d9f41b0882b785 /miasm2/arch/arm/arch.py | |
| parent | ab7f1f35d80841268760919d1d7a2b60df9b1dce (diff) | |
| download | miasm-efcba9e3d0c14bb015380f73757a288f9cc6da2a.tar.gz miasm-efcba9e3d0c14bb015380f73757a288f9cc6da2a.zip | |
ARM Thumb: Add EOR (immediate) instruction
Diffstat (limited to '')
| -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 67d73592..74d4a89f 100644 --- a/miasm2/arch/arm/arch.py +++ b/miasm2/arch/arm/arch.py @@ -3215,6 +3215,7 @@ armtop("add", [bs('11110'), imm12_1, bs('01000'), scc, rn, bs('0'), imm12_3, rd, armtop("bic", [bs('11110'), imm12_1, bs('00001'), scc, rn_nosppc, bs('0'), imm12_3, rd, imm12_8], [rd, rn_nosppc, imm12_8]) armtop("and", [bs('11110'), imm12_1, bs('00000'), scc, rn, bs('0'), imm12_3, rd_nopc, imm12_8], [rd_nopc, rn, imm12_8]) armtop("sub", [bs('11110'), imm12_1, bs('01101'), scc, rn, bs('0'), imm12_3, rd_nopc, imm12_8], [rd_nopc, rn, imm12_8]) +armtop("eor", [bs('11110'), imm12_1, bs('00100'), scc, rn, bs('0'), imm12_3, rd_nopc, imm12_8], [rd_nopc, rn, imm12_8]) armtop("add", [bs('11110'), imm12_1, bs('10000'), scc, rn_nosppc, bs('0'), imm12_3, rd, imm12_8_t4], [rd, rn_nosppc, imm12_8_t4]) armtop("cmp", [bs('11110'), imm12_1, bs('01101'), bs('1'), rn, bs('0'), imm12_3, bs('1111'), imm12_8] ) |