From 9dfef12c7f9be7253f1ae1e07124c1672cebdd42 Mon Sep 17 00:00:00 2001 From: Bryan Bishop Date: Wed, 18 Jan 2012 13:02:06 -0600 Subject: calculate end address in text printer output hg-commit-id: f7ac2a81cf15 --- extras/analyze_texts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extras/analyze_texts.py b/extras/analyze_texts.py index 30a6b5dc..f34cea99 100644 --- a/extras/analyze_texts.py +++ b/extras/analyze_texts.py @@ -551,7 +551,7 @@ def text_pretty_printer_at(start_address, label="SomeLabel"): include_newline = "\n" if output[-1] == "\n": include_newline = "" - output += include_newline + "; " + hex(start_address) + " + " + str(byte_count) + " bytes" + output += include_newline + "; " + hex(start_address) + " + " + str(byte_count) + " bytes = " + hex(start_address + byte_count) print output return (output, byte_count) -- cgit v1.2.3