Click here to Skip to main content
15,894,405 members
Articles / Programming Languages / C

Write Your Own Debugger to Handle Breakpoints

Rate me:
Please Sign up or sign in to vote.
4.55/5 (11 votes)
17 May 2011CPOL4 min read 51K   1.5K   47  
Basic debugger, Breakpoints, OutputDebugString

Microsoft Visual Studio Solution File, Format Version 11.00
# Visual Studio 2010
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Debugger", "Debugger\Debugger.vcxproj", "{B533703A-F065-48FD-B5F7-B810C9442C09}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Debuggee", "Debuggee\Debuggee.vcxproj", "{F01AD5E2-E4DE-41EC-B053-558835F2288D}"
EndProject
Global
	GlobalSection(SolutionConfigurationPlatforms) = preSolution
		Debug|Win32 = Debug|Win32
		Release|Win32 = Release|Win32
	EndGlobalSection
	GlobalSection(ProjectConfigurationPlatforms) = postSolution
		{B533703A-F065-48FD-B5F7-B810C9442C09}.Debug|Win32.ActiveCfg = Debug|Win32
		{B533703A-F065-48FD-B5F7-B810C9442C09}.Debug|Win32.Build.0 = Debug|Win32
		{B533703A-F065-48FD-B5F7-B810C9442C09}.Release|Win32.ActiveCfg = Release|Win32
		{B533703A-F065-48FD-B5F7-B810C9442C09}.Release|Win32.Build.0 = Release|Win32
		{F01AD5E2-E4DE-41EC-B053-558835F2288D}.Debug|Win32.ActiveCfg = Debug|Win32
		{F01AD5E2-E4DE-41EC-B053-558835F2288D}.Debug|Win32.Build.0 = Debug|Win32
		{F01AD5E2-E4DE-41EC-B053-558835F2288D}.Release|Win32.ActiveCfg = Release|Win32
		{F01AD5E2-E4DE-41EC-B053-558835F2288D}.Release|Win32.Build.0 = Release|Win32
	EndGlobalSection
	GlobalSection(SolutionProperties) = preSolution
		HideSolutionNode = FALSE
	EndGlobalSection
EndGlobal

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Instructor / Trainer
India India
Hi,
I have been working with computers since my eight grade, programming the ZX Spectrum. I have always had an interest in assembly language and computer theory (and is still the reason for taking tons of online courses), actively code using C/C++ on Windows (using VS) and Linux (using QT).

I also provide training on data structures, algorithms, parallel patterns library , Graphics (DX11), GPGPUs (DX11-CS,AMP) and programming for performance on x86.
Feel free to call me at 0091-9823018914 (UTC +5:30)



(All views expressed here do not reflect the views of my employer).

Comments and Discussions