diff options
author | Bryan Bishop <kanzure@gmail.com> | 2012-01-17 16:16:27 -0600 |
---|---|---|
committer | Bryan Bishop <kanzure@gmail.com> | 2012-01-17 16:16:27 -0600 |
commit | b48dfcd123921fbd047a5af274eeba15a8bbbd2b (patch) | |
tree | 4581c6f160735ce558fd8564cb2062404dde00a1 /extras/analyze_texts.py | |
parent | ffdd92db777e410a0c365f7b301f0a5a5bdc56ca (diff) |
fix TX_RAM injector for addresses between $a-$f inclusive
hg-commit-id: 82f2343a6d11
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 fbf320fc..30a6b5dc 100644 --- a/extras/analyze_texts.py +++ b/extras/analyze_texts.py @@ -421,7 +421,7 @@ def text_pretty_printer_at(start_address, label="SomeLabel"): p2 = command["pointer"][1] #remember to account for big endian -> little endian - output += "\n" + spacing + "TX_RAM $" + hex(p2)[2:] + hex(p1)[2:] + output += "\n" + spacing + "TX_RAM $%.2x%.2x" %(p2, p1) byte_count += 3 had_db_last = False elif command["type"] == 0x17: #TX_FAR |