Add generate_sys.py.

This commit is contained in:
Sanky 2012-12-21 19:49:56 +01:00
parent 213e60f807
commit 2efa3ebe1f
2 changed files with 11 additions and 0 deletions

3
.gitignore vendored
View File

@ -25,6 +25,9 @@ baserom.sav
pokered.sgm
pokered.sav
baserom.sys
pokered.sys
# for vim configuration
# url: http://www.vim.org/scripts/script.php?script_id=441
.lvimrc

8
extras/generate_sys.py Normal file
View File

@ -0,0 +1,8 @@
import json
import analyze_incbins
analyze_incbins.scan_for_predefined_labels()
with open('../pokered.sym', 'w') as sym:
for label in json.load(open('labels.json')):
sym.write('{0:x}:{1} {2}\n'.format(label['bank_id'], label['local_pointer'][1:], label['label']))