The MASM Forum Archive 2004 to 2012

General Forums => The Campus => Topic started by: CoolDann on December 01, 2007, 02:04:27 AM

Title: Searching a Debugger for MASM32 V9
Post by: CoolDann on December 01, 2007, 02:04:27 AM
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
Title: Re: Searching a Debugger for MASM32 V9
Post by: Tight_Coder_Ex on December 01, 2007, 05:21:58 AM
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
Title: Re: Searching a Debugger for MASM32 V9
Post by: CoolDann on December 01, 2007, 06:48:12 AM
Thanks a Lot TIGHT_CODER_EX let me take a view.
Have a nice day.
Title: Re: Searching a Debugger for MASM32 V9
Post by: Vortex on December 01, 2007, 09:10:56 AM
Pelle's IDE is another nice tool to debug executables created with Masm \ Poasm :

http://smorgasbordet.com/pellesc
Title: Re: Searching a Debugger for MASM32 V9
Post by: evlncrn8 on December 01, 2007, 02:26:56 PM
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...
Title: Re: Searching a Debugger for MASM32 V9
Post by: GregL on December 02, 2007, 08:21:07 PM
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.