How do i start vkdebug and debug .EXE. RAN SETUP.BAT.

Started by reci, October 27, 2010, 03:43:43 AM

Previous topic - Next topic

reci

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.

qWord

hi,

as a beginner it may be easier for you to use OllyDbg as debugger.

regards, qWord
FPU in a trice: SmplMath
It's that simple!

donkey

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
"Ahhh, what an awful dream. Ones and zeroes everywhere...[shudder] and I thought I saw a two." -- Bender
"It was just a dream, Bender. There's no such thing as two". -- Fry
-- Futurama

Donkey's Stable

reci