Initial commit
This commit is contained in:
25
src/Targets/TargetBreakpoint.hpp
Normal file
25
src/Targets/TargetBreakpoint.hpp
Normal file
@@ -0,0 +1,25 @@
|
||||
#pragma once
|
||||
|
||||
#include <cstdint>
|
||||
|
||||
namespace Bloom::Targets
|
||||
{
|
||||
enum class TargetBreakCause: int
|
||||
{
|
||||
BREAKPOINT,
|
||||
UNKNOWN,
|
||||
};
|
||||
|
||||
using TargetBreakpointAddress = std::uint32_t;
|
||||
|
||||
struct TargetBreakpoint
|
||||
{
|
||||
/**
|
||||
* Byte address of the breakpoint.
|
||||
*/
|
||||
TargetBreakpointAddress address;
|
||||
|
||||
bool disabled = false;
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user