×
Create a new article
Write your page title here:
We currently have 176 articles on Open Eggbert. Type your article name above or click on one of the titles below and start writing!



Open Eggbert
176Articles

Objdump: Difference between revisions

(Created page with "Category:Disassemblers")
 
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