mirror of https://github.com/zeldaret/mm.git
Updated Installation (markdown)
parent
ac8c2c37b5
commit
44141e1d0c
|
@ -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 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:
|
If you instead see the following:
|
||||||
```
|
```
|
||||||
rom.z64: FAILED
|
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.
|
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.
|
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!
|
Loading…
Reference in New Issue