Is there a Disassembler that runs on Linux that has the capacity of disassembling x86 ELF executables to assembly code in the Intel syntax (i.e. operation destination register, source register; etc.)? Preferably the output disassembler would be fairly close to the NASM syntax. objdump -d
works fairly well, but outputs the AT&T syntax that I sometimes find difficult to follow, and ndiasm
only disassembles straight binary to my knowledge.
4
votes