@@ -57,7 +57,69 @@ Below the Symbol Tree is the Data Type Manager Window, which is useful for ident
In the center, the Listing window shows the disassembled binary.
For interpretability, Ghidra adds a great deal of color coding and annotative comments to the assembly display.
To the right of the Listing window is the Decompile window which shows Ghidra's best guess of the source code used to produce the corresponding assembly.
Clicking on a function in the Symbol Tree window or within a function in the Listing window will load the relevant decompiled source code in the Decompile window.
To the right of the Listing window is the Decompiler window which shows Ghidra's best guess of the source code used to produce the corresponding assembly.
Clicking on a function in the Symbol Tree window or within a function in the Listing window will load the relevant decompiled source code in the Decompiler window.
Clicking on code in the Decompiler window will highlight the associated assembly instructions; this can be used to inspect how well the decompiler translated the assembly to source code.
We can use the functions list in the Symbol Tree window to locate the main function of the executable.
Clicking on the name of the function brings us to the relevant portion of the assembly and loads the decompiled C code.