Click here to Skip to main content
15,885,780 members
Articles / Desktop Programming / Win32

Toggle hardware data/read/execute breakpoints programmatically

Rate me:
Please Sign up or sign in to vote.
4.97/5 (41 votes)
23 Jul 2008CPOL2 min read 172.9K   4.7K   84  
Simple code to introduce a hardware breakpoint mechanism.

Microsoft Visual Studio Solution File, Format Version 10.00
# Visual Studio 2008
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "hwbrk32", "hwbrk32.vcproj", "{0509740A-FD91-42AC-9D64-3E97B0519F68}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "test32", "test32.vcproj", "{D3C419EC-0C57-45C7-918E-299519354DE8}"
	ProjectSection(ProjectDependencies) = postProject
		{0509740A-FD91-42AC-9D64-3E97B0519F68} = {0509740A-FD91-42AC-9D64-3E97B0519F68}
	EndProjectSection
EndProject
Global
	GlobalSection(SolutionConfigurationPlatforms) = preSolution
		Debug|Win32 = Debug|Win32
		DebugOpti|Win32 = DebugOpti|Win32
		Release|Win32 = Release|Win32
		ReleaseNopt|Win32 = ReleaseNopt|Win32
	EndGlobalSection
	GlobalSection(ProjectConfigurationPlatforms) = postSolution
		{0509740A-FD91-42AC-9D64-3E97B0519F68}.Debug|Win32.ActiveCfg = Debug|Win32
		{0509740A-FD91-42AC-9D64-3E97B0519F68}.Debug|Win32.Build.0 = Debug|Win32
		{0509740A-FD91-42AC-9D64-3E97B0519F68}.DebugOpti|Win32.ActiveCfg = DebugOpti|Win32
		{0509740A-FD91-42AC-9D64-3E97B0519F68}.DebugOpti|Win32.Build.0 = DebugOpti|Win32
		{0509740A-FD91-42AC-9D64-3E97B0519F68}.Release|Win32.ActiveCfg = Release|Win32
		{0509740A-FD91-42AC-9D64-3E97B0519F68}.Release|Win32.Build.0 = Release|Win32
		{0509740A-FD91-42AC-9D64-3E97B0519F68}.ReleaseNopt|Win32.ActiveCfg = ReleaseNopt|Win32
		{0509740A-FD91-42AC-9D64-3E97B0519F68}.ReleaseNopt|Win32.Build.0 = ReleaseNopt|Win32
		{D3C419EC-0C57-45C7-918E-299519354DE8}.Debug|Win32.ActiveCfg = Debug|Win32
		{D3C419EC-0C57-45C7-918E-299519354DE8}.Debug|Win32.Build.0 = Debug|Win32
		{D3C419EC-0C57-45C7-918E-299519354DE8}.DebugOpti|Win32.ActiveCfg = DebugOpti|Win32
		{D3C419EC-0C57-45C7-918E-299519354DE8}.DebugOpti|Win32.Build.0 = DebugOpti|Win32
		{D3C419EC-0C57-45C7-918E-299519354DE8}.Release|Win32.ActiveCfg = Release|Win32
		{D3C419EC-0C57-45C7-918E-299519354DE8}.Release|Win32.Build.0 = Release|Win32
		{D3C419EC-0C57-45C7-918E-299519354DE8}.ReleaseNopt|Win32.ActiveCfg = ReleaseNopt|Win32
		{D3C419EC-0C57-45C7-918E-299519354DE8}.ReleaseNopt|Win32.Build.0 = ReleaseNopt|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
Software Developer
Greece Greece
I'm working in C++, PHP , Java, Windows, iOS, Android and Web (HTML/Javascript/CSS).

I 've a PhD in Digital Signal Processing and Artificial Intelligence and I specialize in Pro Audio and AI applications.

My home page: https://www.turbo-play.com

Comments and Discussions