I was wondering if there is a simple way of using C++ to take a path of an executable and then fetch it's ASM? External library or command-line program solutions are accepted :)
Asked
Active
Viewed 24 times
1 Answers
1
Since you didn't mind command-line utilities:
Under Linux, one option is to use
objdump -d
.Under Windows, one option is to use DUMPBIN /DISASM.

Acorn
- 24,970
- 5
- 40
- 69