30 lines
778 B
C++
30 lines
778 B
C++
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <optional>
|
||
|
|
|
||
|
|
#include "CommandPacket.hpp"
|
||
|
|
#include "src/Targets/TargetRegister.hpp"
|
||
|
|
|
||
|
|
namespace Bloom::DebugServers::Gdb::CommandPackets
|
||
|
|
{
|
||
|
|
/**
|
||
|
|
* The WriteGeneralRegisters class implements the structure for "P" packets. Upon receiving this packet,
|
||
|
|
* server is expected to update a register value to the target.
|
||
|
|
*/
|
||
|
|
class WriteGeneralRegister: public CommandPacket
|
||
|
|
{
|
||
|
|
private:
|
||
|
|
void init();
|
||
|
|
|
||
|
|
public:
|
||
|
|
int registerNumber = 0;
|
||
|
|
std::vector<unsigned char> registerValue;
|
||
|
|
|
||
|
|
explicit WriteGeneralRegister(const std::vector<unsigned char>& rawPacket): CommandPacket(rawPacket) {
|
||
|
|
init();
|
||
|
|
};
|
||
|
|
|
||
|
|
void dispatchToHandler(Gdb::GdbRspDebugServer& gdbRspDebugServer) override;
|
||
|
|
};
|
||
|
|
}
|