Implements get registers command for #11.

Need to implement still the reply support.
This commit is contained in:
Benito Palacios Sánchez 2015-03-15 12:30:23 +01:00 committed by Superfranci99
parent 0a56ccd234
commit 01d4d258fc
2 changed files with 39 additions and 0 deletions

View File

@ -76,6 +76,7 @@
<Compile Include="StructPanel.cs" />
<Compile Include="DataStructure.cs" />
<Compile Include="VisualPlugin.cs" />
<Compile Include="RSP\Packets\ReadRegisters.cs" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<ItemGroup>

View File

@ -0,0 +1,38 @@
//
// ReadRegisters.cs
//
// Author:
// Benito Palacios Sánchez <benito356@gmail.com>
//
// Copyright (c) 2015 Benito Palacios Sánchez
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
using System;
namespace NitroDebugger.RSP.Packets
{
public class ReadRegisters : CommandPacket
{
public ReadRegisters()
: base('g')
{
}
protected override string PackArguments()
{
return "";
}
}
}