Updated Installation (markdown)

Kenix3 2020-09-13 14:21:29 -04:00
parent ac8c2c37b5
commit 44141e1d0c
1 changed files with 9 additions and 2 deletions

@ -65,7 +65,10 @@ make init
This will create the build folders as well as a newly created asm folder containing the disassemblies of nearly all the files containing code.
This make target will also build the ROM. You should see the following text printed: `rom.z64: OK `
This make target will also build the ROM. You should see the following text printed:
```
rom.z64: OK
```
If you instead see the following:
```
rom.z64: FAILED
@ -74,3 +77,7 @@ md5sum: WARNING: 1 computed checksum did NOT match
This means that something is wrong with the ROM's contents. Either the baserom files are incorrect due to a bad ROM, or some piece of code is not matching.
The `make init` target will also copy the successful build to the `./expected` directory which will be used by the diff script.
This command can be used to invoke the diff script in order to aid in decompiling functions: `./tools/asm-differ/diff.py -wmo {function_name}`
Happy decompiling!