Add capstone ASR special case

This commit is contained in:
feliam 2017-03-02 16:33:58 -03:00
parent 04d95735ac
commit f5515df4ff

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):