vote up 1 vote down star
1

Hi

how can I write just a simple disassembler for linux from scratches? Are there any libs to use? I need something that "just works".

thank in advanced

flag

75% accept rate
What architecture(s) are you targeting, as this is significantly more relevent than the OS. – Dave Rigby Jul 8 at 23:03
Sorry I've omitted which architecture, I'm tryng disassembling under x86 – Lopoc Jul 9 at 15:59

3 Answers

vote up 5 vote down check

you have to understand the ELF file format first. Then, you can start processing the various sections of code according to the opcodes of your architecture.

link|flag
vote up 6 vote down

Instead of writing one, try Objdump.

Based on your comment, and your desire to implement from scratch, I take it this is a school project. You could get the source for objdump and see what libraries and techniques it uses. The BFD library might be of use.

link|flag
I't not the aim of my project, i usually use any kind of debugger and disassembler. – Lopoc Jul 8 at 23:00
vote up 0 vote down

http://www.eresi-project.org/

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.