diff options
author | Marcus Huderle <huderlem@gmail.com> | 2018-04-21 08:55:20 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-21 08:55:20 -0700 |
commit | 18f6c5c9d460c019453227abe033d84f1feb6310 (patch) | |
tree | dd8fd630b8bf040e0a0eaa682d39b2bcb061eae5 | |
parent | a55b14d47def2735f7ec274ccf64b6e2d8805320 (diff) |
Update CONTRIBUTING.md
Change `make compare` to just `make`
-rw-r--r-- | CONTRIBUTING.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 15ff9dfb3..de76ef57f 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -14,7 +14,7 @@ The rest of the `.s` files in `asm/` are fair game. The basic decompilation process is: * Choose a file in `asm/`, i.e. `asm/x.s`. Create a C file called `src/x.c`. * Translate the first function in `asm/x.s` to C in `src/x.c`. -* `make compare`, and tweak the function until it matches. +* `make`, and tweak the function until it matches. * Clean up the code and comment. * Repeat for each function until `asm/x.s` is empty. @@ -260,7 +260,7 @@ But what about `sub_8123244`? It's still not obvious what that function does. We ## 5. Build ```sh -make compare +make ``` ```gcc src/cable_car.c: In function `sub_81231EC': @@ -308,7 +308,7 @@ void sub_81231EC(u8 taskId) { Build again, and we get: ```sh -make compare +make ``` ```sha1sum pokeruby.gba: OK |