From d2b2523695a19b85487b91659668b7a94e84dc6c Mon Sep 17 00:00:00 2001 From: Disconnect3d Date: Sat, 6 Aug 2022 22:09:48 +0200 Subject: [PATCH] Aarch64 regs: add X30 Add missing X30 register to the aarch64 register set. Note that we do not list X29 because it is the SP (stack frame pointer) --- pwndbg/regs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pwndbg/regs.py b/pwndbg/regs.py index 289a202ab..ca53f15b7 100644 --- a/pwndbg/regs.py +++ b/pwndbg/regs.py @@ -110,7 +110,7 @@ aarch64 = RegisterSet( retaddr = ('lr',), frame = 'x29', gpr = ('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'), + 'x20', 'x21', 'x22', 'x23', 'x24', 'x25', 'x26', 'x27', 'x28', 'x30'), misc = ('w0', 'w1', 'w2', 'w3', 'w4', 'w5', 'w6', 'w7', 'w8', 'w9', 'w10', 'w11', 'w12', 'w13', 'w14', 'w15', 'w16', 'w17', 'w18', 'w19', 'w20', 'w21', 'w22', 'w23', 'w24', 'w25', 'w26', 'w27', 'w28'),