Add capstone ASR special case (#42)

* Add capstone ASR special case

* Fix capstone install (#43)

* Add arm asr, abstract SR type insns (#44)

* tmp

* Fix bug

* test m.hook typerror (#41)

* Use setuptool extras for dev deps (#40)

* Add extra deps to setup.py

* Fix nose dep

* lol wrong keystone

* Fix readme

* Update travis

* Workaround capstone install bug

* Use --no-binary in only pip install line

* Fix another readme regression

* Not again

* Update README.md

* Update README.md

* Update README.md

* Update README.md

* Update travis token, reformat (#46)

the travis cli tool auto reformatted the yaml

* Remove embedded ply (#47)

* rm ply

* add ply dep

* Refactor `new_symbolic_value` (#48)

* Use default params instead of dict, add taint

* Update docstring

* Add capstone ASR special case
This commit is contained in:
feliam
2017-03-06 15:31:24 -03:00
committed by GitHub
parent ab0abf7f72
commit 1f838736a5
+2
View File
@@ -440,6 +440,8 @@ class Armv7Cpu(Cpu):
return 'LSR'
elif instr.mnemonic.startswith('lsl'):
return 'LSL'
elif instr.mnemonic.startswith('asr'):
return 'ASR'
return OP_NAME_MAP.get(name, name)
def readOperand(self, op):