frontend ui/editor & data funnelling for hardware data breakpoints

This commit is contained in:
Ryan Fleury
2025-04-11 17:03:36 -07:00
parent 64187e75eb
commit e621d13669
8 changed files with 59 additions and 3 deletions
+9
View File
@@ -28,9 +28,18 @@ struct D_TargetArray
U64 count;
};
typedef U32 D_BreakpointFlags;
enum
{
D_BreakpointFlag_BreakOnWrite = (1<<0),
D_BreakpointFlag_BreakOnRead = (1<<1),
D_BreakpointFlag_BreakOnExecute = (1<<2),
};
typedef struct D_Breakpoint D_Breakpoint;
struct D_Breakpoint
{
D_BreakpointFlags flags;
String8 file_path;
TxtPt pt;
String8 vaddr_expr;