summaryrefslogtreecommitdiff
path: root/docs/tutorial/beginning_decomp.md
diff options
context:
space:
mode:
authorcadmic <cadmic24@gmail.com>2024-01-05 14:27:19 -0800
committerGitHub <noreply@github.com>2024-01-05 23:27:19 +0100
commit25ff0a27de771f631369721ce1e8ca7ad7be8cfd (patch)
tree54b901ce526e95d5c8d4af9e14032713cb89ee53 /docs/tutorial/beginning_decomp.md
parent1f9c28f370d73268981fd8a42f9c6ac15b560a1a (diff)
Create separate build directories based on version (#1591)
* Create separate build directories based on version * Fix find_unused_asm.sh * Remove find_unused_asm.sh from Jenkinsfile * Revert diff.py * Clarify that gc-eu-mq is not "supported" yet * Revert xmlcreate.py (to be deleted) * Remove gc-eu-mq for now * Add version flags to diff_settings.py and sym_info.py * --version -> --oot-version * Fix --oot-version * Revert adding version flags to tools * Delete find_unused_asm.sh * Revert changes to first_diff.py output in tutorial * Factor out sed usages for spec
Diffstat (limited to 'docs/tutorial/beginning_decomp.md')
-rw-r--r--docs/tutorial/beginning_decomp.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/tutorial/beginning_decomp.md b/docs/tutorial/beginning_decomp.md
index b5c5e8506..49f25784e 100644
--- a/docs/tutorial/beginning_decomp.md
+++ b/docs/tutorial/beginning_decomp.md
@@ -772,7 +772,7 @@ Once preliminary cleanup and struct filling is done, most time spent matching fu
In order to use `diff.py` with the symbol names, we need a copy of the code to compare against. This is done by copying the `build` directory into a directory called `expected`. Copying in Windows on WSL is very slow, so run
```
$ mkdir expected
-cp -r build/ expected/
+cp -r build expected/
```
from the main directory of the repository. You should end up with the directory structure `expected/build/...`.
@@ -914,7 +914,7 @@ It turns out that this is enough to completely fix the diff:
Everything *looks* fine, but we only know for sure when we run `make`. Thankfully doing so gives
```
-zelda_ocarina_mq_dbg.z64: OK
+oot-gc-eu-mq-dbg.z64: OK
```
which is either a sense of triumph or relief depending on how long you've spent on a function.