1
0
Fork 0
mirror of https://github.com/zeldaret/oot.git synced 2025-07-03 14:34:32 +00:00

Added 'extract' target to makefile

Created a THANKS.md file for credits.
Updated checksum.md5 for a "vanilla" debug ROM
Added fixbaserom.py which automatically removes the overdump, byte swaps, and patches the ROM header.
This commit is contained in:
Jack Walker 2020-03-27 22:30:19 -04:00
parent ba5df8eb51
commit 3e74c33627
6 changed files with 60 additions and 1 deletions

View file

@ -129,6 +129,11 @@ build/undefined_syms.txt: undefined_syms.txt
clean:
$(RM) $(ROM) $(ELF) -r build
extract:
make -C tools
python3 fixbaserom.py
python3 extract_baserom.py
python3 extract_assets.py
#### Various Recipes ####