diff options
author | Bryan Bishop <kanzure@gmail.com> | 2012-01-18 13:02:06 -0600 |
---|---|---|
committer | Bryan Bishop <kanzure@gmail.com> | 2012-01-18 13:02:06 -0600 |
commit | 9dfef12c7f9be7253f1ae1e07124c1672cebdd42 (patch) | |
tree | cd8bbf86e64d8d48505872fb90f4fc78d66fd4b1 /extras/analyze_texts.py | |
parent | 8db5a6b694f5e76c6192ff8c4232468e8d855e21 (diff) |
calculate end address in text printer output
hg-commit-id: f7ac2a81cf15
Diffstat (limited to 'extras/analyze_texts.py')
-rw-r--r-- | extras/analyze_texts.py | 2 |
1 files changed, 1 insertions, 1 deletions
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) |