diff --git a/NitroDebugger/NitroDebugger.csproj b/NitroDebugger/NitroDebugger.csproj index 3d2da9a..3f5fc02 100644 --- a/NitroDebugger/NitroDebugger.csproj +++ b/NitroDebugger/NitroDebugger.csproj @@ -76,6 +76,7 @@ + diff --git a/NitroDebugger/RSP/Packets/ReadRegisters.cs b/NitroDebugger/RSP/Packets/ReadRegisters.cs new file mode 100644 index 0000000..5fe9fbf --- /dev/null +++ b/NitroDebugger/RSP/Packets/ReadRegisters.cs @@ -0,0 +1,38 @@ +// +// ReadRegisters.cs +// +// Author: +// Benito Palacios Sánchez +// +// 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 . +using System; + +namespace NitroDebugger.RSP.Packets +{ + public class ReadRegisters : CommandPacket + { + public ReadRegisters() + : base('g') + { + } + + protected override string PackArguments() + { + return ""; + } + } +} +