commit - d93ecda35199ac5c5845e1d5daecba71878a9529
commit + afb8d715c63ca22b01124a77debf4493189f79af
blob - f1ffbb62cadde2b143d95d3698acd89148a78b33
blob + 83b9cc850ee058eb009dca3e989486de8ab04efc
--- memtrace_calliope_trns.py
+++ memtrace_calliope_trns.py
blocks = re.findall("[%*]+|[.]+", mem)
for b in blocks:
if len(b) > 4 and b[0] == '.':
- out += "%08x %d bytes\r\n" % (self.heap_start + addr, len(b)-4)
+ out += "%08x %d bytes\r\n" % (self.heap_start + addr + 4, len(b)-4)
addr += len(b)
return out