about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKartik <pokemonemerald0@gmail.com>2019-02-19 09:41:45 +0000
committerGitHub <noreply@github.com>2019-02-19 09:41:45 +0000
commit3d4370cf5c745a87cd2a34b9effae933273b3e62 (patch)
tree3cc7482369c845248c8218878bb04a6d281899a0
parent2388cb38d48465e0315f05b55874e87d0f1252b6 (diff)
downloadmiasm-3d4370cf5c745a87cd2a34b9effae933273b3e62.tar.gz
miasm-3d4370cf5c745a87cd2a34b9effae933273b3e62.zip
implement NOP for arm
-rw-r--r--miasm2/arch/arm/arch.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/miasm2/arch/arm/arch.py b/miasm2/arch/arm/arch.py
index 23ecc7d3..c50748e4 100644
--- a/miasm2/arch/arm/arch.py
+++ b/miasm2/arch/arm/arch.py
@@ -1699,6 +1699,7 @@ 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])
 
 armop("isb", [bs8(0xF5), bs8(0x7F), bs8(0xF0), bs8(0x6F)])
+armop("nop", [bs8(0xE3), bs8(0x20), bs8(0xF0), bs8(0)])
 
 class arm_widthm1(arm_imm, m_arg):
     def decode(self, v):