Quantcast
Channel: Disassembling A Flat Binary File Using objdump - Stack Overflow
Viewing all articles
Browse latest Browse all 3

Disassembling A Flat Binary File Using objdump

$
0
0

Can I disassemble a flat binary file using objdump?

I'm familiar with disassembling a structured binary executable such as an ELF file using:

objdump -d file.elf

But if I have a flat binary file that I know is supposed to be loaded at, e.g., address 0xabcd1000, can I ask objdump to disassemble it? I tried supplying options such as '--start-address=0xabcd1000' but objdump just states that it doesn't recognize the format.

I have other ideas about how to disassemble the file but I wanted to know if objdump could provide a simple solution.


Viewing all articles
Browse latest Browse all 3

Trending Articles