diff options
| author | Camille Mougey <commial@gmail.com> | 2015-01-13 16:30:03 +0100 |
|---|---|---|
| committer | Camille Mougey <commial@gmail.com> | 2015-01-13 16:30:03 +0100 |
| commit | 5d79d9f9e23dad67e0e78df1723d35ba9f041cbf (patch) | |
| tree | a9b30c494b3e0c6d4df136ac4b44e47a09694a15 /miasm2/arch/arm/arch.py | |
| parent | 328c0f8f1c08a6412fe2083bfdc09f941f5ceb2e (diff) | |
| parent | 5c45840909c9ef005bda6952ad270f70953f6d74 (diff) | |
| download | miasm-5d79d9f9e23dad67e0e78df1723d35ba9f041cbf.tar.gz miasm-5d79d9f9e23dad67e0e78df1723d35ba9f041cbf.zip | |
Merge pull request #34 from serpilliere/arm_add_instruction
Arm: add instruction bfc
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 73b198ba..f0e32834 100644 --- a/miasm2/arch/arm/arch.py +++ b/miasm2/arch/arm/arch.py @@ -1528,6 +1528,7 @@ lsb = bs(l=5, cls=(arm_imm, m_arg)) armop("ubfx", [bs('0111111'), widthm1, rd, lsb, bs('101'), rn], [rd, rn, lsb, widthm1]) +armop("bfc", [bs('0111110'), widthm1, rd, lsb, bs('001'), bs('1111')], [rd, lsb, widthm1]) # # thumnb ####################### # |