News:

Masm32 SDK description, downloads and other helpful links
Message to All Guests

Main Menu

How do you debug your code?

Started by Fabioxds, March 14, 2018, 05:33:58 PM

Previous topic - Next topic

fearless

I use combination of the DbgWin and Donkey's vKim like debug macros for outputting text, strings, registers and variables and occasionally dumping structures etc.

Then i also use x64dbg occasionally with program assembled with debug settings and pdb, which allows source level view and disassembly as well.
I use the xAnalyzer plugin in x64dbg to add api call information and parameters, to the comments, and i added my own definitions for some libaries i have for functions and constants

CPU View:



Source View:


Of course the xAnalyzer plugin works with standard windows api calls as well like so:



Pete 80286

Quote from: fearless on March 18, 2018, 05:00:06 AM
Source View:



That's really neat code block remarks in your WndProc! With your permission I'm going to use that style. Thanks!