Debugger refactor
This commit is contained in:
parent
81c399ec3e
commit
65d7a16a87
12 changed files with 115 additions and 114 deletions
|
@ -1,5 +1,6 @@
|
|||
using ARMeilleure.State;
|
||||
using Ryujinx.Cpu;
|
||||
using System.Threading;
|
||||
|
||||
namespace Ryujinx.HLE.HOS.Kernel.Process
|
||||
{
|
||||
|
@ -24,6 +25,7 @@ namespace Ryujinx.HLE.HOS.Kernel.Process
|
|||
private readonly ulong[] _x = new ulong[32];
|
||||
|
||||
public ulong DebugPc { get; set; }
|
||||
public Barrier StepBarrier { get; }
|
||||
|
||||
public ulong GetX(int index) => _x[index];
|
||||
public void SetX(int index, ulong value) => _x[index] = value;
|
||||
|
@ -35,16 +37,7 @@ namespace Ryujinx.HLE.HOS.Kernel.Process
|
|||
{
|
||||
}
|
||||
|
||||
public void DebugStop()
|
||||
{
|
||||
}
|
||||
|
||||
public bool DebugStep()
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
public void DebugContinue()
|
||||
public void RequestDebugStep()
|
||||
{
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue