mirror of
https://github.com/pmret/papermario.git
synced 2024-11-08 12:02:30 +01:00
29c3ffa2e0
* clean * git subrepo pull --force tools/splat subrepo: subdir: "tools/splat" merged: "901241040d" upstream: origin: "https://github.com/ethteck/splat.git" branch: "master" commit: "901241040d" git-subrepo: version: "0.4.5" origin: "https://github.com/ingydotnet/git-subrepo" commit: "aa416e4" * splat update * more matches after nop hack * git subrepo pull --force tools/splat subrepo: subdir: "tools/splat" merged: "715ee0ad55" upstream: origin: "https://github.com/ethteck/splat.git" branch: "master" commit: "715ee0ad55" git-subrepo: version: "0.4.5" origin: "https://github.com/ingydotnet/git-subrepo" commit: "aa416e4" * Renames, match boot_idle * one mo * wips * fish func Co-authored-by: @JaThePlayer * sushie dun * warnings * clean * match a nok func * nok_02 stuff * nok_04 party image * func_802BD5D8_3174F8 * LoadPartyImage & stuff * warnings
12 lines
478 B
Python
12 lines
478 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_directory'] = f'{ver_dir}/expected/'
|