Altered submodules (#50)

* Adjusted asm-differ and removed autodecompiler

* Added permuter as submodule
This commit is contained in:
CoderStig
2021-11-05 14:12:08 -06:00
committed by GitHub
parent 8ab4557b39
commit 67549c6061
8 changed files with 34 additions and 4 deletions
+5 -2
View File
@@ -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
Submodule diff deleted from c379de7d88
Executable
+3
View File
@@ -0,0 +1,3 @@
#!/bin/bash
python3 tools/asm-differ/diff.py $1
+16
View File
@@ -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'] = ['.']
+4
View File
@@ -0,0 +1,4 @@
#!/bin/bash
python3 tools/decomp-permuter/import.py $1
+4
View File
@@ -0,0 +1,4 @@
#!/bin/bash
python3 tools/decomp-permuter/permuter.py $1
+1
Submodule tools/asm-differ added at c379de7d88