0

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 .

Community
  • 1
  • 1
Mohammad Sina Karvandi
  • 1,064
  • 3
  • 25
  • 44
  • 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 Answers1

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

Related: How to use/install GNU binutils (objdump)

phuclv
  • 37,963
  • 15
  • 156
  • 475