├── .gitignore ├── .gitmodules ├── .vscode ├── settings.json └── tasks.json ├── Dockerfile ├── Makefile ├── README.md ├── SCUS_971.11.lcf ├── additional_obj_files.mk ├── asm └── symbols.s ├── diff_settings.py ├── dun_obj_files.mk ├── include ├── common.h ├── ebattle.hpp ├── macro.inc ├── savedata.hpp ├── texture.hpp └── types.h ├── main_obj_files.mk ├── rom ├── .gitignore └── checksum.sha256 ├── scripts ├── build.bat ├── build.sh ├── diff.sh ├── disassemble.py ├── extract.py ├── m2ctx.py ├── patterns │ └── overlay.hexpat ├── section_stripper.py └── verify.py ├── src ├── ebattle.cpp ├── savedata.cpp └── texture.cpp ├── title_obj_files.mk └── tools └── compilers └── mw └── 2.3.1.01 ├── LMGR326B.dll ├── asm_r5900_elf.exe ├── mwccmips.exe └── mwldmips.exe /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adubbz/DCDecomp/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adubbz/DCDecomp/HEAD/.gitmodules -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adubbz/DCDecomp/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adubbz/DCDecomp/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adubbz/DCDecomp/HEAD/Dockerfile -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adubbz/DCDecomp/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adubbz/DCDecomp/HEAD/README.md -------------------------------------------------------------------------------- /SCUS_971.11.lcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adubbz/DCDecomp/HEAD/SCUS_971.11.lcf -------------------------------------------------------------------------------- /additional_obj_files.mk: -------------------------------------------------------------------------------- 1 | ADDITIONAL_O_FILES :=\ 2 | $(BUILD_DIR)/asm/symbols.s.o \ 3 | -------------------------------------------------------------------------------- /asm/symbols.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adubbz/DCDecomp/HEAD/asm/symbols.s -------------------------------------------------------------------------------- /diff_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adubbz/DCDecomp/HEAD/diff_settings.py -------------------------------------------------------------------------------- /dun_obj_files.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adubbz/DCDecomp/HEAD/dun_obj_files.mk -------------------------------------------------------------------------------- /include/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adubbz/DCDecomp/HEAD/include/common.h -------------------------------------------------------------------------------- /include/ebattle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adubbz/DCDecomp/HEAD/include/ebattle.hpp -------------------------------------------------------------------------------- /include/macro.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adubbz/DCDecomp/HEAD/include/macro.inc -------------------------------------------------------------------------------- /include/savedata.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adubbz/DCDecomp/HEAD/include/savedata.hpp -------------------------------------------------------------------------------- /include/texture.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adubbz/DCDecomp/HEAD/include/texture.hpp -------------------------------------------------------------------------------- /include/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adubbz/DCDecomp/HEAD/include/types.h -------------------------------------------------------------------------------- /main_obj_files.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adubbz/DCDecomp/HEAD/main_obj_files.mk -------------------------------------------------------------------------------- /rom/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !checksum.sha256 -------------------------------------------------------------------------------- /rom/checksum.sha256: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adubbz/DCDecomp/HEAD/rom/checksum.sha256 -------------------------------------------------------------------------------- /scripts/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adubbz/DCDecomp/HEAD/scripts/build.bat -------------------------------------------------------------------------------- /scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adubbz/DCDecomp/HEAD/scripts/build.sh -------------------------------------------------------------------------------- /scripts/diff.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adubbz/DCDecomp/HEAD/scripts/diff.sh -------------------------------------------------------------------------------- /scripts/disassemble.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adubbz/DCDecomp/HEAD/scripts/disassemble.py -------------------------------------------------------------------------------- /scripts/extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adubbz/DCDecomp/HEAD/scripts/extract.py -------------------------------------------------------------------------------- /scripts/m2ctx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adubbz/DCDecomp/HEAD/scripts/m2ctx.py -------------------------------------------------------------------------------- /scripts/patterns/overlay.hexpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adubbz/DCDecomp/HEAD/scripts/patterns/overlay.hexpat -------------------------------------------------------------------------------- /scripts/section_stripper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adubbz/DCDecomp/HEAD/scripts/section_stripper.py -------------------------------------------------------------------------------- /scripts/verify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adubbz/DCDecomp/HEAD/scripts/verify.py -------------------------------------------------------------------------------- /src/ebattle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adubbz/DCDecomp/HEAD/src/ebattle.cpp -------------------------------------------------------------------------------- /src/savedata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adubbz/DCDecomp/HEAD/src/savedata.cpp -------------------------------------------------------------------------------- /src/texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adubbz/DCDecomp/HEAD/src/texture.cpp -------------------------------------------------------------------------------- /title_obj_files.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adubbz/DCDecomp/HEAD/title_obj_files.mk -------------------------------------------------------------------------------- /tools/compilers/mw/2.3.1.01/LMGR326B.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adubbz/DCDecomp/HEAD/tools/compilers/mw/2.3.1.01/LMGR326B.dll -------------------------------------------------------------------------------- /tools/compilers/mw/2.3.1.01/asm_r5900_elf.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adubbz/DCDecomp/HEAD/tools/compilers/mw/2.3.1.01/asm_r5900_elf.exe -------------------------------------------------------------------------------- /tools/compilers/mw/2.3.1.01/mwccmips.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adubbz/DCDecomp/HEAD/tools/compilers/mw/2.3.1.01/mwccmips.exe -------------------------------------------------------------------------------- /tools/compilers/mw/2.3.1.01/mwldmips.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adubbz/DCDecomp/HEAD/tools/compilers/mw/2.3.1.01/mwldmips.exe --------------------------------------------------------------------------------