diff options
author | Bryan Bishop <kanzure@gmail.com> | 2012-01-10 01:02:18 -0600 |
---|---|---|
committer | Bryan Bishop <kanzure@gmail.com> | 2012-01-10 01:02:18 -0600 |
commit | 14f9f3fac754b205ba58cd8254432f7ec0d70ce6 (patch) | |
tree | b764e972046de4922e705fbf80a9567cab43609b /extras/gbz80disasm.py | |
parent | a1eebadc371ddc9d201cf119a303cb4a435fec64 (diff) |
remove debug output from gbz80disasm
hg-commit-id: 65f6c206f6e1
Diffstat (limited to 'extras/gbz80disasm.py')
-rw-r--r-- | extras/gbz80disasm.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/extras/gbz80disasm.py b/extras/gbz80disasm.py index 307905ef..61f2608f 100644 --- a/extras/gbz80disasm.py +++ b/extras/gbz80disasm.py @@ -686,7 +686,6 @@ def output_bank_opcodes(original_offset, max_byte_count=0x4000): #current_byte_number += 1 #clean up unused labels - print "byte_labels is: " + str(byte_labels) for label_line in byte_labels.keys(): address = label_line label_line = byte_labels[label_line] @@ -712,4 +711,4 @@ if __name__ == "__main__": #0x18f96 is PalletTownText1 #0x19B5D is BluesHouseText1 - print output_bank_opcodes(0x1b40)[0] + print output_bank_opcodes(0x35ec)[0] |