mirror of
https://github.com/pmret/papermario.git
synced 2024-11-08 20:12:30 +01:00
021592d219
* aura_appendGfx * 3 more action commands * fire_shell * hammer, hurricane * spiny_surge * data stuff, cleanup, whirlwind * warnings * water_block data and func * water_block * effect stuff cleanup * big_snowflakes effect * data cleanup, fpr abi regs * 2 battle item funcs + data * 2 mo * shooting_star func * 3 16F740 funcs * btl_state_update_end_battle * map funcs * more dedupe * cleanin * draw_entity_model_C/D * effect butterflies, btl state funcs * it is done * it is done * PR comments, some cleanup
11 lines
420 B
Python
11 lines
420 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']
|