Reputation: 1102
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 .
Upvotes: 0
Views: 6363
Reputation: 41774
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
Related: How to use/install GNU binutils (objdump)
Upvotes: 2