aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--scripts/gdb.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/gdb.py b/scripts/gdb.py
index 11e8a90..75852b8 100644
--- a/scripts/gdb.py
+++ b/scripts/gdb.py
@@ -163,7 +163,7 @@ class Target:
data = unhexify(reply)
except Excpetion:
raise Exception('Invalid response to memory read packet: %r' % reply)
- return struct.unpack("=16L", data)
+ return struct.unpack("=20L", data)
def write_regs(self, *regs):
"""Write target core registers"""