diff options
author | Bryan Bishop <kanzure@gmail.com> | 2012-01-03 15:50:55 -0600 |
---|---|---|
committer | Bryan Bishop <kanzure@gmail.com> | 2012-01-03 15:50:55 -0600 |
commit | 76c0308b5a176509c481724b8ac58f265b7db323 (patch) | |
tree | 9ff4f7b05c6ef766e82e0b83ee0daa4c74a831d3 /extras | |
parent | 4f0571f06717bfef1b6b5a3fab4d782a80b3d920 (diff) |
fix final interval in generated incbins
hg-commit-id: 38e1356814c2
Diffstat (limited to 'extras')
-rw-r--r-- | extras/analyze_incbins.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/extras/analyze_incbins.py b/extras/analyze_incbins.py index 4f193d60..c47ac522 100644 --- a/extras/analyze_incbins.py +++ b/extras/analyze_incbins.py @@ -115,6 +115,7 @@ def split_incbin_line_into_three(line, start_address, byte_count): third = (start_address + byte_count, end - (start_address + byte_count)) output = "" + print "third end is: " + str(third[1]) if first: output += "INCBIN \"baserom.gbc\",$" + hex(first[0])[2:] + ",$" + hex(first[1])[2:] + " - $" + hex(first[2])[2:] + "\n" |