I like the masm 32 package. its very easy to use.
i assembled and linked first time in 5 years. vk debug is
next to learn.
hi,
as a beginner it may be easier for you to use OllyDbg (http://www.ollydbg.de/) as debugger.
regards, qWord
Hi reci,
vkim's debug is an inline debugging tool. For example you can print a number in the debug window by using the PrintDec macro:
mov eax,10
PrintDec eax
This will open the debug window and display the number 10. A list of the macros can be found in MASM32\dbproc\debug.inc.
Edgar
thanks donkey thands qWord ill givem a try.