News:

MASM32 SDK Description, downloads and other helpful links
MASM32.com New Forum Link
masmforum WebSite

Searching a Debugger for MASM32 V9

Started by CoolDann, December 01, 2007, 02:04:27 AM

Previous topic - Next topic

CoolDann

Hi, I am using MASM32 V9 and I need a debugger for this version, I'll  aprecciate the help can you give.
I need trace the valu of Registers, variables, flgs, etc.

Thanks in advance

Tight_Coder_Ex

I use Ollydbg http://www.ollydbg.de/ and even though is lacks some of the features I was accustomed to with VC 6.0 is is an excellent tool

CoolDann

Thanks a Lot TIGHT_CODER_EX let me take a view.
Have a nice day.

Vortex

Pelle's IDE is another nice tool to debug executables created with Masm \ Poasm :

http://smorgasbordet.com/pellesc

evlncrn8

windbg is free too, is not as 'cute' as ollydbg though... -> http://www.microsoft.com/whdc/devtools/debugging/default.mspx

@Tight_coder_Ex -> "lacks some of the features I was accustomed to with VC 6.0"... like?

perhaps you're confusing the issue vc disassembles along with the c source code, which is compiled to asm
ollydbg is designed for asm disassembly, you can link source files into olly, but its not really worth it...

GregL

Quoteperhaps you're confusing the issue vc disassembles along with the c source code, which is compiled to asm, ollydbg is designed for asm disassembly

Any version of Visual C++, even the Express Editions makes for a great assembly debugger, I prefer them to anything else. Assemble and link your program with debug info and then load the .exe into VC++ with /debugexe.

OllyDbg is very good too.