NO

Author Topic: Disassembler  (Read 4502 times)

akko

  • Guest
Disassembler
« 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 !!

Offline TimoVJL

  • Global Moderator
  • Member
  • *****
  • Posts: 2091
Re: Disassembler
« Reply #1 on: December 24, 2010, 10:39:26 AM »
With pocc.exe commandline option /T
or podump /DISASM

Merry Christmas to all !
« Last Edit: December 24, 2010, 12:47:28 PM by timovjl »
May the source be with you

Offline Vortex

  • Member
  • *
  • Posts: 802
    • http://www.vortex.masmcode.com
Re: Disassembler
« Reply #2 on: December 25, 2010, 03:25:17 PM »
Hi akko,

You could try Ollydbg :

http://www.ollydbg.de
Code it... That's all...

akko

  • Guest
Re: Disassembler
« Reply #3 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.