mirror of
https://github.com/pmret/papermario.git
synced 2024-11-08 12:02:30 +01:00
3e3558a37f
* cleanup & warnings for modern gcc * clean * stuff * diff.py update * Fix offset problem in struct * Fix texture issue in chapter_change * appendGfx_shading_palette
12 lines
472 B
Python
12 lines
472 B
Python
#!/usr/bin/env python3
|
|
|
|
def apply(config, args):
|
|
ver_dir = 'ver/current/'
|
|
config['baseimg'] = f'{ver_dir}baserom.z64'
|
|
config['myimg'] = f'{ver_dir}build/papermario.z64'
|
|
config['mapfile'] = f'{ver_dir}build/papermario.map'
|
|
config['source_directories'] = ['src', f'{ver_dir}asm', 'include', f'{ver_dir}assets']
|
|
config['make_command'] = ['ninja']
|
|
config['objdump_flags'] = ['-M','reg-names=32']
|
|
config['expected_dir'] = f'{ver_dir}/expected/'
|