From c9d3a90cd0bf6a4c669ae8a8679bc71d54e7595e Mon Sep 17 00:00:00 2001 From: JanLJL Date: Mon, 2 Dec 2019 15:38:00 +0100 Subject: [PATCH] bugfix --- osaca/db_interface.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osaca/db_interface.py b/osaca/db_interface.py index 4915e7f..003ac02 100755 --- a/osaca/db_interface.py +++ b/osaca/db_interface.py @@ -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,