mirror of
https://github.com/pmret/papermario.git
synced 2024-11-08 12:02:30 +01:00
68792f4331
* fixing segment * redoing subtree * git subrepo clone https://github.com/ethteck/splat.git tools/splat subrepo: subdir: "tools/splat" merged: "99cf514297" upstream: origin: "https://github.com/ethteck/splat.git" branch: "master" commit: "99cf514297" git-subrepo: version: "0.4.3" origin: "https://github.com/ingydotnet/git-subrepo" commit: "2f68596" * fix symbol_addrs * sweet victory * reformat collision_main_lateral.s * Lots of matches, fixed diff.py issue, improved coverage.py * some more * update symbol_addrs * git subrepo pull tools/splat subrepo: subdir: "tools/splat" merged: "c46026725a" upstream: origin: "https://github.com/ethteck/splat.git" branch: "master" commit: "c46026725a" git-subrepo: version: "0.4.3" origin: "https://github.com/ingydotnet/git-subrepo" commit: "2f68596" * update symbol_addrs * fix disasm * 2 mo * Jenkinsfile * PR comments * check_input_status_menu, removing some macros * a few funcs * assist updates * UnkAlphaFunc * UnkPartnerPosFuncs * Deleting stuff * oopz * dead_syms.txt, UnkNpcAIFunc14 * update symbol_addrs * cleanup * symbol_addrs * cleanup * Set80071270_0_16 * UnkFloatFunc2 * fix watt data start * UnkNpcAIFunc15 * 🐱 * 🐱 🐱 * symbol_addrs * fix assist.py * delete unnecessary data file * fix diff.py, remove parens * parens
10 lines
368 B
Python
10 lines
368 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']
|