mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-22 05:48:37 +00:00
Added the readmemory command.
This commit is contained in:
parent
b6f571f394
commit
48ebc0bf7b
2 changed files with 20 additions and 1 deletions
15
source/Cosmos.GdbClient/BasicCommands/ReadMemoryCommand.cs
Normal file
15
source/Cosmos.GdbClient/BasicCommands/ReadMemoryCommand.cs
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace Cosmos.GdbClient.BasicCommands
|
||||
{
|
||||
public class ReadMemoryCommand : CommandBase<byte[]>
|
||||
{
|
||||
public ReadMemoryCommand() : base(GdbController.Instance) { }
|
||||
|
||||
protected override void Execute()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -10,7 +10,7 @@
|
|||
<AppDesignerFolder>Properties</AppDesignerFolder>
|
||||
<RootNamespace>Cosmos.GdbClient</RootNamespace>
|
||||
<AssemblyName>Cosmos.GdbClient</AssemblyName>
|
||||
<TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
|
||||
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<SccProjectName>SAK</SccProjectName>
|
||||
<SccLocalPath>SAK</SccLocalPath>
|
||||
|
|
@ -36,6 +36,9 @@
|
|||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.Core">
|
||||
<RequiredTargetFramework>3.5</RequiredTargetFramework>
|
||||
</Reference>
|
||||
<Reference Include="System.Data" />
|
||||
<Reference Include="System.Xml" />
|
||||
</ItemGroup>
|
||||
|
|
@ -44,6 +47,7 @@
|
|||
<Compile Include="BasicCommands\CommandBase.cs" />
|
||||
<Compile Include="BasicCommands\ContinueCommand.cs" />
|
||||
<Compile Include="BasicCommands\GetRegistersCommand.cs" />
|
||||
<Compile Include="BasicCommands\ReadMemoryCommand.cs" />
|
||||
<Compile Include="GdbConnection.cs" />
|
||||
<Compile Include="GdbPacket.cs" />
|
||||
<Compile Include="GdbController.cs" />
|
||||
|
|
|
|||
Loading…
Reference in a new issue