Pelles C forum

Assembly language => Assembly discussions => Topic started by: akko on December 24, 2010, 10:17:22 AM

Title: Disassembler
Post by: akko on December 24, 2010, 10:17:22 AM
Guess this is a rather dumb question (I tried with the integrated debugger but without luck):
What is the best way to disassemble & analyse the generated code?

I want to tune some loops to max speed by some assembler instructions. However it is important to see how it is integrated with the rest of the code.

BTW it would be nice to have computed goto's with Pelles C.

Merry Christmas to everybody here !!
Title: Re: Disassembler
Post by: TimoVJL on December 24, 2010, 10:39:26 AM
With pocc.exe commandline option /T
or podump /DISASM

Merry Christmas to all !
Title: Re: Disassembler
Post by: Vortex on December 25, 2010, 03:25:17 PM
Hi akko,

You could try Ollydbg :

http://www.ollydbg.de
Title: Re: Disassembler
Post by: akko on January 10, 2011, 02:05:57 PM
Oh silly, silly me!!   ;D

Compile & link with all debugging information
Right click in the debugger pane, and select disassemby view.