We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
diff --git a/voltron/dbg.py b/voltron/dbg.py index 4d92f5b..d5d52b4 100644 --- a/voltron/dbg.py +++ b/voltron/dbg.py @@ -98,6 +98,7 @@ class DebuggerAdaptor(object): "armv7": {"pc": "pc", "sp": "sp"}, "armv7s": {"pc": "pc", "sp": "sp"}, "arm64": {"pc": "pc", "sp": "sp"}, + "aarch64": {"pc": "pc", "sp": "sp"}, "powerpc": {"pc": "pc", "sp": "r1"}, } cs_archs = {} @@ -110,6 +111,7 @@ class DebuggerAdaptor(object): "armv7": (capstone.CS_ARCH_ARM, capstone.CS_MODE_ARM), "armv7s": (capstone.CS_ARCH_ARM, capstone.CS_MODE_ARM), "arm64": (capstone.CS_ARCH_ARM64, capstone.CS_MODE_ARM), + "aarch64": (capstone.CS_ARCH_ARM64, capstone.CS_MODE_ARM), "powerpc": (capstone.CS_ARCH_PPC, capstone.CS_MODE_32), } diff --git a/voltron/plugins/view/register.py b/voltron/plugins/view/register.py index a4a0a4a..2b08082 100644 --- a/voltron/plugins/view/register.py +++ b/voltron/plugins/view/register.py @@ -115,6 +115,16 @@ class RegisterView (TerminalView): 'category': 'general', }, ], + 'aarch64': [ + { + 'regs': ['pc', 'sp', 'x0', 'x1', 'x2', 'x3', 'x4', 'x5', 'x6', 'x7', 'x8', 'x9', 'x10', + 'x11', 'x12', 'x13', 'x14', 'x15', 'x16', 'x17', 'x18', 'x19', 'x20', + 'x21', 'x22', 'x23', 'x24', 'x25', 'x26', 'x27', 'x28', 'fp', 'lr', 'cpsr'], + 'label_format': '{0:3s}', + 'value_format': SHORT_ADDR_FORMAT_64, + 'category': 'general', + }, + ], 'powerpc': [ { 'regs': ['pc','msr','cr','lr', 'ctr',
The text was updated successfully, but these errors were encountered:
add aarch64
037d30b
snare#304
No branches or pull requests
The text was updated successfully, but these errors were encountered: