diff options
author | Bryan Bishop <kanzure@gmail.com> | 2013-09-01 19:34:50 -0700 |
---|---|---|
committer | Bryan Bishop <kanzure@gmail.com> | 2013-09-01 19:34:50 -0700 |
commit | 2e6d805aea27741bc0e6097bd52c6f2b6d176b74 (patch) | |
tree | bb91bace929310f2787b80424fdada70bba94e81 /redtools/gbz80disasm.py | |
parent | 7aa016fb528bcc8dcb30c6a887957851623eccc0 (diff) | |
parent | 52d4978974263f4f19985632442291c2d30c4b67 (diff) |
Merge pull request #7 from kanzure/september-cleanup
python cleanup
Diffstat (limited to 'redtools/gbz80disasm.py')
-rw-r--r-- | redtools/gbz80disasm.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/redtools/gbz80disasm.py b/redtools/gbz80disasm.py index 5319898..396ce5b 100644 --- a/redtools/gbz80disasm.py +++ b/redtools/gbz80disasm.py @@ -7,7 +7,8 @@ from copy import copy, deepcopy from pretty_map_headers import random_hash, map_name_cleaner from ctypes import c_int8 import sys -spacing = " " + +spacing = "\t" temp_opt_table = [ [ "ADC A", 0x8f, 0 ], @@ -848,6 +849,4 @@ if __name__ == "__main__": extract_maps.load_map_pointers() extract_maps.read_all_map_headers() - #0x18f96 is PalletTownText1 - #0x19B5D is BluesHouseText1 print output_bank_opcodes(int(sys.argv[1], 16))[0] |