mirror of
https://github.com/Ed94/raddebugger.git
synced 2026-08-05 21:38:40 +00:00
reimplement run-to-line and run-to-address with temporary user breakpoints which die-on-stop, which provides the desired flow for e.g. run-to-line while nothing runs
This commit is contained in:
+12
-11
@@ -463,21 +463,22 @@ enum
|
||||
DF_EntityFlag_HasRng1U64 = (1<<5),
|
||||
DF_EntityFlag_HasColor = (1<<6),
|
||||
DF_EntityFlag_DiesWithTime = (1<<7),
|
||||
DF_EntityFlag_DiesOnRunStop = (1<<8),
|
||||
|
||||
//- rjf: ctrl entity equipment
|
||||
DF_EntityFlag_HasCtrlMachineID = (1<<8),
|
||||
DF_EntityFlag_HasCtrlHandle = (1<<9),
|
||||
DF_EntityFlag_HasArch = (1<<10),
|
||||
DF_EntityFlag_HasCtrlID = (1<<11),
|
||||
DF_EntityFlag_HasStackBase = (1<<12),
|
||||
DF_EntityFlag_HasTLSRoot = (1<<13),
|
||||
DF_EntityFlag_HasVAddrRng = (1<<14),
|
||||
DF_EntityFlag_HasVAddr = (1<<15),
|
||||
DF_EntityFlag_HasCtrlMachineID = (1<<9),
|
||||
DF_EntityFlag_HasCtrlHandle = (1<<10),
|
||||
DF_EntityFlag_HasArch = (1<<11),
|
||||
DF_EntityFlag_HasCtrlID = (1<<12),
|
||||
DF_EntityFlag_HasStackBase = (1<<13),
|
||||
DF_EntityFlag_HasTLSRoot = (1<<14),
|
||||
DF_EntityFlag_HasVAddrRng = (1<<15),
|
||||
DF_EntityFlag_HasVAddr = (1<<16),
|
||||
|
||||
//- rjf: file properties
|
||||
DF_EntityFlag_IsFolder = (1<<16),
|
||||
DF_EntityFlag_IsMissing = (1<<17),
|
||||
DF_EntityFlag_Output = (1<<18), // NOTE(rjf): might be missing, but written by us
|
||||
DF_EntityFlag_IsFolder = (1<<17),
|
||||
DF_EntityFlag_IsMissing = (1<<18),
|
||||
DF_EntityFlag_Output = (1<<19), // NOTE(rjf): might be missing, but written by us
|
||||
|
||||
//- rjf: deletion
|
||||
DF_EntityFlag_MarkedForDeletion = (1<<31),
|
||||
|
||||
Reference in New Issue
Block a user