From 44141e1d0c6dd7ffd9c8f5592cc342d13e57d10f Mon Sep 17 00:00:00 2001 From: Kenix3 Date: Sun, 13 Sep 2020 14:21:29 -0400 Subject: [PATCH] Updated Installation (markdown) --- Installation.md | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/Installation.md b/Installation.md index 852c46f..e8d4193 100644 --- a/Installation.md +++ b/Installation.md @@ -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 @@ -73,4 +76,8 @@ 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. \ No newline at end of file +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! \ No newline at end of file