summaryrefslogtreecommitdiff
path: root/extras/analyze_texts.py
diff options
context:
space:
mode:
authorBryan Bishop <kanzure@gmail.com>2012-01-07 01:34:22 -0600
committerBryan Bishop <kanzure@gmail.com>2012-01-07 01:34:22 -0600
commitd0be12ead077b7b501b3c9a53565b421ad241dd1 (patch)
tree3a4804ec42c14c9e259a25b48781c3cbcdc96133 /extras/analyze_texts.py
parent6bad9c837c2d502a0c2e52a3ecf9235765d2473f (diff)
somewhat buggy TX_FAR pretty printer
hg-commit-id: 94a023e4e37e
Diffstat (limited to 'extras/analyze_texts.py')
-rw-r--r--extras/analyze_texts.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/extras/analyze_texts.py b/extras/analyze_texts.py
index 25cf04fb..61ba6de6 100644
--- a/extras/analyze_texts.py
+++ b/extras/analyze_texts.py
@@ -46,7 +46,7 @@ def process_00_subcommands(start_address, end_address):
current_line = []
for pbyte in subsection:
byte = ord(pbyte)
- current_line.append(hex(byte))
+ current_line.append(byte)
if byte == 0x4f or byte == 0x51 or byte == 0x55:
lines[line_count] = current_line
current_line = []