This commit is contained in:
Nav
2023-04-01 12:40:12 +01:00
parent 56ea97369d
commit 06b6c4460b
6 changed files with 6 additions and 6 deletions

View File

@@ -146,7 +146,7 @@ namespace Bloom::Services
);
}
void TargetControllerService::stepTargetExecution(std::optional<TargetProgramCounter> fromAddress) const {
void TargetControllerService::stepTargetExecution(std::optional<TargetMemoryAddress> fromAddress) const {
auto stepExecutionCommand = std::make_unique<StepTargetExecution>();
if (fromAddress.has_value()) {

View File

@@ -93,7 +93,7 @@ namespace Bloom::Services
*
* @param fromAddress
*/
void stepTargetExecution(std::optional<Targets::TargetProgramCounter> fromAddress) const;
void stepTargetExecution(std::optional<Targets::TargetMemoryAddress> fromAddress) const;
/**
* Requests the TargetController to read register values from the target.