ref: 3da828165b36680b845768ccc40c91a540ff18bb
parent: b3ab0153b31145cb2d2aea06b4aba3589c47530b
author: Bryan Bishop <kanzure@gmail.com>
date: Tue Jan 10 20:51:35 EST 2012
add address output to analyze_texts find missing texts hg-commit-id: 1c41e22d7b30
--- a/extras/analyze_texts.py
+++ b/extras/analyze_texts.py
@@ -491,7 +491,7 @@
address = extract_maps.map_headers[map_id]["texts"][text_id][1]["start_address"]
if not is_label_in_asm(label):
- print label + " map_id=" + str(map_id) + " text_id=" + str(text_id) + " at " + hex(address)
+ print label + " map_id=" + str(map_id) + " text_id=" + str(text_id) + " at " + hex(address) + " byte is: " + hex(ord(extract_maps.rom[address]))
if __name__ == "__main__":
extract_maps.load_rom()