This commit is contained in:
JanLJL
2019-12-02 15:38:00 +01:00
parent 2ad1318196
commit 987c73c5b0

View File

@@ -213,7 +213,7 @@ def _create_db_operand_aarch64(operand):
elif operand.startswith('m'):
return {
'class': 'memory',
'base': 'gpr' if 'b' in operand else None,
'base': 'x' if 'b' in operand else None,
'offset': 'imd' if 'o' in operand else None,
'index': 'gpr' if 'i' in operand else None,
'scale': 8 if 's' in operand else 1,