m68k-palmos-objdump knows of nearly all object formats, just ask it by "m68k-palmos-objdump --info".
If you have a compiled modul, use "m68k-palmos-objdump -d module.o". If you have a linked COFF, use "m68k-palmos-objdump -d application". If you have a built PRC, use "m68k-palmos-objdump -d application.prc". See, it recognizes everything automagically ;-) Unfortunately, you have only symbols if you compile and link with "-g". The PRC contains no symbols. But this doesn't answer your question: you'd like to see assembler with C-lines. Here you have at least two alternatives: 1. Call the compiler with "-S" instead of "-c", and give a name for the output file, for example 'module.s'. This stops the compiler after producing the intermediate assembler source. 2. Add the option "-Wa,-ahlms=module.lst" for each 'module.c'. The listing file should be what you want. Good luck! Bodo -- For information on using the ACCESS Developer Forums, or to unsubscribe, please see http://www.access-company.com/developers/forums/
