commit afb8d715c63ca22b01124a77debf4493189f79af from: Matthias L. Jugel date: Tue Jan 15 14:19:06 2019 UTC fix start addres of free block commit - d93ecda35199ac5c5845e1d5daecba71878a9529 commit + afb8d715c63ca22b01124a77debf4493189f79af blob - f1ffbb62cadde2b143d95d3698acd89148a78b33 blob + 83b9cc850ee058eb009dca3e989486de8ab04efc --- memtrace_calliope_trns.py +++ memtrace_calliope_trns.py @@ -145,7 +145,7 @@ class CalliopeDebugTransform(Transform): 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