Quantcast
Channel: Disassembling A Flat Binary File Using objdump - Stack Overflow
Browsing latest articles
Browse All 3 View Live

Answer by mirabilos for Disassembling A Flat Binary File Using objdump

starblue and hlovdal both have parts of the canonical answer. If you want to disassemble raw i8086 code, you usually want Intel syntax, not AT&T syntax, too, so use: objdump -D -Mintel,i8086 -b...

View Article



Answer by Multimedia Mike for Disassembling A Flat Binary File Using objdump

I found the solution to my own question on a different forum. It looks something like this: objdump -b binary --adjust-vma=0xabcd1000 -D file.bin I've tested this and it works.

View Article

Disassembling A Flat Binary File Using objdump

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...

View Article
Browsing latest articles
Browse All 3 View Live




Latest Images