added ICX architecture

This commit is contained in:
JanLJL
2022-08-29 11:14:56 +02:00
parent f96f5d7ad1
commit 671f7f5591
7 changed files with 7559 additions and 5 deletions

View File

@@ -260,7 +260,7 @@ def _create_db_operand_aarch64(operand):
def _create_db_operand_x86(operand):
"""Get DB operand for AArch64 by operand string."""
if operand == "r":
if operand.startswith("r"):
return {"class": "register", "name": "gpr"}
elif operand in "xyz":
return {"class": "register", "name": operand + "mm"}