mirror of
https://github.com/n64decomp/mk64
synced 2026-07-08 04:55:16 -04:00
Altered submodules (#50)
* Adjusted asm-differ and removed autodecompiler * Added permuter as submodule
This commit is contained in:
+5
-2
@@ -1,6 +1,9 @@
|
||||
[submodule "autodecompiler"]
|
||||
path = autodecompiler
|
||||
url = https://github.com/farisawan-2000/auto-decompiler
|
||||
[submodule "diff"]
|
||||
path = diff
|
||||
[submodule "asm-differ"]
|
||||
path = tools/asm-differ
|
||||
url = https://github.com/simonlindholm/asm-differ
|
||||
[submodule "tools/decomp-permuter"]
|
||||
path = tools/decomp-permuter
|
||||
url = https://github.com/simonlindholm/decomp-permuter
|
||||
|
||||
Submodule autodecompiler deleted from 0c069ace49
-1
Submodule diff deleted from c379de7d88
@@ -0,0 +1,16 @@
|
||||
#!/usr/bin/env python3
|
||||
|
||||
def add_custom_arguments(parser):
|
||||
group = parser.add_mutually_exclusive_group(required=False)
|
||||
group.add_argument('-u', dest='lang', action='store_const', const='us',
|
||||
help="Set version to US.")
|
||||
|
||||
def apply(config, args):
|
||||
lang = args.lang or 'us'
|
||||
config['mapfile'] = f'build/{lang}/mk64.{lang}.map'
|
||||
config['myimg'] = f'build/{lang}/mk64.{lang}.z64'
|
||||
config['baseimg'] = f'baserom.{lang}.z64'
|
||||
config['makeflags'] = [f'VERSION={lang}']
|
||||
config['source_directories'] = ['.']
|
||||
|
||||
|
||||
Submodule
+1
Submodule tools/asm-differ added at c379de7d88
Submodule
+1
Submodule tools/decomp-permuter added at 2420458ba7
Reference in New Issue
Block a user