The MASM Forum Archive 2004 to 2012

Project Support Forums => 64 Bit Assembler => Topic started by: reci on October 27, 2010, 03:43:43 AM

Title: How do i start vkdebug and debug .EXE. RAN SETUP.BAT.
Post by: reci on October 27, 2010, 03:43:43 AM
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.
Title: Re: How do i start vkdebug and debug .EXE. RAN SETUP.BAT.
Post by: qWord on October 27, 2010, 08:53:54 AM
hi,

as a beginner it may be easier for you to use OllyDbg  (http://www.ollydbg.de/) as debugger.

regards, qWord
Title: Re: How do i start vkdebug and debug .EXE. RAN SETUP.BAT.
Post by: donkey on October 30, 2010, 01:01:38 PM
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
Title: Re: How do i start vkdebug and debug .EXE. RAN SETUP.BAT.
Post by: reci on October 31, 2010, 07:20:56 PM
thanks donkey thands qWord ill givem a try.