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