Disassembler for COFF - reny...@yahoo.com - Feb 5 7:40:54 2007
Hi,
I am looking for a tool which can take an absoulte address and a .out (TI coff format) and
outputs the C disassembly of a range of address. I am looking something similar like objdump
which works with ELF files.
Best Regards
Reny

(You need to be a member of code-comp -- send a blank email to code-comp-subscribe@yahoogroups.com )
Re: Disassembler for COFF - Jeff Brower - Feb 5 16:06:20 2007
Reny-
> I am looking for a tool which can take an absoulte address and a .out (TI coff format) and
outputs the C disassembly
> of a range of address. I am looking something similar like objdump which works with ELF
files.
I don't know of a free tool. Of course CCS can do this. I can tell you it's a bit of work, as
the COFF file is
organized by sections, which means it needs to be fully parsed once before you can "index
by address" -- i.e. before
you know which areas of memory contain code, data, or nothing.
-Jeff

(You need to be a member of code-comp -- send a blank email to code-comp-subscribe@yahoogroups.com )