shithub: pokered

ref: 23f5f8c4ef70c5bcad827ac93b4d8983f49149a6
dir: /extras/generate_sys.py/

View raw version
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']))