I just wanna convert .exe to .asm , so how can I accomplish this ?! It seems that it is available in Decompiling EXE to ASM but it is for linux .
Asked
Active
Viewed 6,006 times
0
-
to some one who votes to close this: [questions about "software tools commonly used by programmers;" are on topic here](http://stackoverflow.com/help/on-topic) – phuclv Mar 23 '15 at 18:03
-
3@LưuVĩnhPhúc Questions about specific tools are on topic. Asking for a recommendation for one isn't. Taken from that same link (empahasis mine): "Questions asking us to recommend or find a book, **tool**, software library, tutorial or other off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam." – Ross Ridge Mar 23 '15 at 18:21
1 Answers
2
objdump
is included in gcc, and there are Windows ports for gcc like MinGW-w64. Just download it and use.
Alternatively install Cygwin, which is a Unix subsystem on Windows, and run objdump in it
Another tool is Microsoft DUMPBIN which is included in MS Visual Studio

phuclv
- 37,963
- 15
- 156
- 475
-
2Also: http://www.agner.org/optimize#objconv is pretty nice. Yep, it's my opinion. :) – Frank Kotler Mar 23 '15 at 20:14
-
Since the mingw-w64 project on sourceforge.net is moving to mingw-w64.org i suggest to use [mingw-w64.org](http://mingw-w64.org) – POQDavid Jul 02 '15 at 19:19