This commit is contained in:
Nav
2023-11-25 07:44:50 +00:00
parent 73b1328f9f
commit 2fc639fb14
5 changed files with 18 additions and 14 deletions

View File

@@ -145,13 +145,6 @@ namespace Targets
*/
virtual void clearAllBreakpoints() = 0;
/**
* Should update the value of the given registers.
*
* @param registers
*/
virtual void writeRegisters(TargetRegisters registers) = 0;
/**
* Should read register values of the registers described by the given descriptors.
*
@@ -161,6 +154,13 @@ namespace Targets
*/
virtual TargetRegisters readRegisters(const Targets::TargetRegisterDescriptorIds& descriptorIds) = 0;
/**
* Should update the value of the given registers.
*
* @param registers
*/
virtual void writeRegisters(const TargetRegisters& registers) = 0;
/**
* Should read memory from the target.
*