mirror of
https://github.com/zeldaret/oot.git
synced 2024-11-10 19:20:13 +00:00
Various repo improvements (#316)
* Narrowing down ido5-required files, assist.py, permuter settings * OSX support changes, +x on setup scripts * ZAP2 Update for OSX * Remove assist.py * Removing ido 5 things
This commit is contained in:
parent
40fc24420a
commit
d374d8d026
6 changed files with 11 additions and 3 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -34,6 +34,7 @@ tools/disasm/output/*
|
|||
tools/asmsplitter/asm/*
|
||||
tools/asmsplitter/c/*
|
||||
ctx.c
|
||||
tools/*dSYM/
|
||||
|
||||
# Assets
|
||||
*.rgba32.png
|
||||
|
|
4
Makefile
4
Makefile
|
@ -18,7 +18,7 @@ PROJECT_DIR := $(dir $(realpath $(firstword $(MAKEFILE_LIST))))
|
|||
ifeq ($(shell type mips-linux-gnu-ld >/dev/null 2>/dev/null; echo $$?), 0)
|
||||
MIPS_BINUTILS_PREFIX := mips-linux-gnu-
|
||||
else
|
||||
MIPS_BINUTILS_PREFIX := mips64-elf-
|
||||
$(error Please install or build mips-linux-gnu)
|
||||
endif
|
||||
|
||||
# check that either QEMU_IRIX is set or qemu-irix package installed
|
||||
|
@ -160,7 +160,7 @@ build/undefined_syms.txt: undefined_syms.txt
|
|||
$(CPP) -P $< > build/undefined_syms.txt
|
||||
|
||||
clean:
|
||||
$(RM) $(ROM) $(ELF) -r build
|
||||
$(RM) -r $(ROM) $(ELF) build
|
||||
|
||||
setup:
|
||||
git submodule update --init --recursive
|
||||
|
|
0
extract_assets.py
Normal file → Executable file
0
extract_assets.py
Normal file → Executable file
0
extract_baserom.py
Normal file → Executable file
0
extract_baserom.py
Normal file → Executable file
|
@ -1 +1 @@
|
|||
Subproject commit a781b7b098472076f99f52e4ad214823ea91be2d
|
||||
Subproject commit 15fcb21d2c4e2ef2f720d28a0f7dec259ddd06f5
|
7
tools/permuter_settings.toml
Normal file
7
tools/permuter_settings.toml
Normal file
|
@ -0,0 +1,7 @@
|
|||
[preserve_macros]
|
||||
"g[DS]P.*" = "void"
|
||||
"gDma.*" = "void"
|
||||
LOG = "void"
|
||||
SET_FULLSCREEN_VIEWPORT = "void"
|
||||
ABS = "int"
|
||||
SQ = "int"
|
Loading…
Reference in a new issue