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
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
Thanks a Lot TIGHT_CODER_EX let me take a view.
Have a nice day.
Pelle's IDE is another nice tool to debug executables created with Masm \ Poasm :
http://smorgasbordet.com/pellesc
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...
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.