Enabled memory inspection for boot segment of WCH RISC-V targets

This commit is contained in:
Nav
2024-12-19 23:47:20 +00:00
parent c8f02080b6
commit d485263c6d
3 changed files with 5 additions and 0 deletions

View File

@@ -28,6 +28,7 @@ namespace Targets
bool executable;
TargetMemoryAccess debugModeAccess;
TargetMemoryAccess programmingModeAccess;
bool inspectionEnabled;
std::optional<TargetMemorySize> pageSize;
TargetMemorySegmentDescriptor(
@@ -40,6 +41,7 @@ namespace Targets
bool executable,
const TargetMemoryAccess& debugModeAccess,
const TargetMemoryAccess& programmingModeAccess,
bool inspectionEnabled,
std::optional<TargetMemorySize> pageSize
);