This commit is contained in:
Nav
2022-05-01 17:33:39 +01:00
parent 1072534809
commit 75d8ca68fb
3 changed files with 2 additions and 3 deletions

View File

@@ -14,9 +14,9 @@ namespace Bloom::TargetController::Commands
READ_TARGET_REGISTERS,
WRITE_TARGET_REGISTERS,
READ_TARGET_MEMORY,
WRITE_TARGET_MEMORY,
GET_TARGET_STATE,
STEP_TARGET_EXECUTION,
WRITE_TARGET_MEMORY,
SET_BREAKPOINT,
REMOVE_BREAKPOINT,
SET_PROGRAM_COUNTER,

View File

@@ -16,7 +16,6 @@ namespace Bloom::TargetController::Commands
std::uint32_t address = 0;
SetProgramCounter() = default;
explicit SetProgramCounter(std::uint32_t address)
: address(address)
{};