diff options
| author | serpilliere <devnull@localhost> | 2014-08-01 14:53:29 +0200 |
|---|---|---|
| committer | serpilliere <devnull@localhost> | 2014-08-01 14:53:29 +0200 |
| commit | a845de1faf31228bd8279d11d780f80def64af9d (patch) | |
| tree | 8218b8640a384aee020f715a73c0c62bb8a04a12 /miasm2/arch/arm/arch.py | |
| parent | a38102f1a05a36e95950785e1b2a9354eeef02f2 (diff) | |
| download | miasm-a845de1faf31228bd8279d11d780f80def64af9d.tar.gz miasm-a845de1faf31228bd8279d11d780f80def64af9d.zip | |
Arm arch: add sxtb/sxth (tx to t.pourcelot)
Diffstat (limited to 'miasm2/arch/arm/arch.py')
| -rw-r--r-- | miasm2/arch/arm/arch.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/miasm2/arch/arm/arch.py b/miasm2/arch/arm/arch.py index dd0cf665..348820db 100644 --- a/miasm2/arch/arm/arch.py +++ b/miasm2/arch/arm/arch.py @@ -1470,6 +1470,9 @@ armop("qadd", armop("uxtb", [bs('01101110'), bs('1111'), rd, rot_rm, bs('00'), bs('0111'), rm_noarg]) armop("uxth", [bs('01101111'), bs('1111'), rd, rot_rm, bs('00'), bs('0111'), rm_noarg]) +armop("sxtb", [bs('01101010'), bs('1111'), rd, rot_rm, bs('00'), bs('0111'), rm_noarg]) +armop("sxth", [bs('01101011'), bs('1111'), rd, rot_rm, bs('00'), bs('0111'), rm_noarg]) + class arm_widthm1(arm_imm, m_arg): def decode(self, v): |