Decompilation of The Legend of Zelda: Twilight Princess (GCN, USA)
Go to file
Trueffel 4cbf3e121b
Some documentation on d_menu_fishing (#2115)
* d_menu_fishing documentation pass

* some changes on d_menu_ring and d_menu_skill
2024-03-31 10:09:48 +03:00
.devcontainer
.github/workflows
asm d_menu_ring OK (#2114) 2024-03-30 22:18:52 +01:00
defs
docs
include Some documentation on d_menu_fishing (#2115) 2024-03-31 10:09:48 +03:00
libs Match all funcs in d_menu_ring (#2113) 2024-03-30 22:45:15 +03:00
rel d_a_e_bee mostly done (#2112) 2024-03-30 20:04:34 +03:00
src Some documentation on d_menu_fishing (#2115) 2024-03-31 10:09:48 +03:00
tools Fix make game (#2097) 2024-03-15 00:35:29 -07:00
.clang-format
.gitignore remove dkp dependency (#2078) 2024-02-25 06:46:55 -07:00
Doxyfile
LICENSE.md
Makefile remove dkp dependency (#2078) 2024-02-25 06:46:55 -07:00
Progress.md Match all funcs in d_menu_ring (#2113) 2024-03-30 22:45:15 +03:00
README.md
asmdiff.sh
diff.py d_a_obj_wind_stone OK (#2066) 2024-02-08 14:35:24 +02:00
diff_settings.py remove dkp dependency (#2078) 2024-02-25 06:46:55 -07:00
dolzel2.sha1
include_link.mk
makewibo.sh
obj_files.mk remove "duplicated" inlines (#2099) 2024-03-19 13:31:53 +02:00
sha1sums.json
tp

README.md

The Legend of Zelda: Twilight Princess
Code Progress Dol Progress Rels Progress

This repo contains a WIP decompilation of The Legend of Zelda: Twilight Princess (GCN USA).

More information about the project can be found here: https://zsrtp.link

Project Overview

tp/
├── .devcontainer    # Files required to use a container as a full-feature dev environment in vscode (optional).
├── .github          # Github actions and PR templates for this project.
├── asm              # The assembly for unmatched functions.
├── defs             # Python modules used by dol2asm.
├── docs             # Notes and documentation about this project.
├── include          # Header files used by this project.
├── libs             # Source code for the libraries based on the symbol map.
├── rel              # Source code for the game RELs.
├── src              # Source code for the main game.
├── tools            # Various tools to support the project.
├── .clang-format    # Clang format file.
├── .gitignore       # Files/folders to ignore changes to when making commits.
├── Doxyfile         # Doxygen configuration file.
├── LICENSE.md       # License file containing information about CC0-1.0
├── Makefile         # Makefile for the project containing various targets.
├── Progress.md      # Markdown file that displays the current progress of the project.
├── README.md        # The file you're currently reading.
├── asmdiff.sh       # Bash script to diff two functions using objdump and diff based on their input addresses.
├── diff.py          # Python script to diff two functions.
├── diff_settings.py # Settings for the diff.py script.
├── dolzel2.sha1     # SHA1 of the dol.
├── include_link.mk  # Makefiles to include in the main Makefile.
├── makewibo.sh      # Bash script used with objdiff to force it to build with wibo.
├── obj_files.mk     # Object files to include in the main Makefile.
├── sha1sums.json    # JSON file containing SHA1 checksums of the DOL and RELs.
└── tp               # Bash script used to call the main tp python script in tools directory.