Robertvokac (talk | contribs) (Created page with "Category:Disassemblers") |
Robertvokac (talk | contribs) No edit summary |
||
Line 1: | Line 1: | ||
[[Category:Disassemblers]] | [[Category:Disassemblers]] | ||
== How to convert a x86 exe file to the Assembly language == | |||
<code>objdump -D -M intel your_file.exe > output.asm</code> | |||
-D means to disassebmly the whole file | |||
-M intel sets the format of the assembly to Intel |
Latest revision as of 10:47, 9 November 2024
How to convert a x86 exe file to the Assembly language
objdump -D -M intel your_file.exe > output.asm
-D means to disassebmly the whole file
-M intel sets the format of the assembly to Intel