Added TargetMemoryAddress, TargetMemorySize, TargetProgramCounter and TargetStackPointer aliases
This commit is contained in:
@@ -20,7 +20,7 @@ namespace Bloom::DebugServer::Gdb::AvrGdb::CommandPackets
|
||||
/**
|
||||
* Start address of the memory operation.
|
||||
*/
|
||||
std::uint32_t startAddress = 0;
|
||||
Targets::TargetMemoryAddress startAddress = 0;
|
||||
|
||||
/**
|
||||
* The type of memory to read from.
|
||||
@@ -30,7 +30,7 @@ namespace Bloom::DebugServer::Gdb::AvrGdb::CommandPackets
|
||||
/**
|
||||
* Number of bytes to read.
|
||||
*/
|
||||
std::uint32_t bytes = 0;
|
||||
Targets::TargetMemorySize bytes = 0;
|
||||
|
||||
explicit ReadMemory(const RawPacketType& rawPacket, const Gdb::TargetDescriptor& gdbTargetDescriptor);
|
||||
|
||||
|
||||
@@ -20,7 +20,7 @@ namespace Bloom::DebugServer::Gdb::AvrGdb::CommandPackets
|
||||
/**
|
||||
* Start address of the memory operation.
|
||||
*/
|
||||
std::uint32_t startAddress = 0;
|
||||
Targets::TargetMemoryAddress startAddress = 0;
|
||||
|
||||
/**
|
||||
* The type of memory to read from.
|
||||
|
||||
Reference in New Issue
Block a user