mirror of
https://github.com/pleonex/NitroDebugger.git
synced 2025-06-19 05:35:32 -04:00
Implements get registers command for #11.
Need to implement still the reply support.
This commit is contained in:
parent
0a56ccd234
commit
01d4d258fc
@ -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>
|
||||
|
38
NitroDebugger/RSP/Packets/ReadRegisters.cs
Normal file
38
NitroDebugger/RSP/Packets/ReadRegisters.cs
Normal 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 "";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user