mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-06-28 02:26:23 +02:00
18 lines
475 B
C#
18 lines
475 B
C#
using IExecutionContext = Ryujinx.Cpu.IExecutionContext;
|
|
|
|
namespace Ryujinx.HLE.Debugger
|
|
{
|
|
public class ThreadBreakMessage : IMessage
|
|
{
|
|
public IExecutionContext Context { get; }
|
|
public ulong Address { get; }
|
|
public int Opcode { get; }
|
|
|
|
public ThreadBreakMessage(IExecutionContext context, ulong address, int opcode)
|
|
{
|
|
Context = context;
|
|
Address = address;
|
|
Opcode = opcode;
|
|
}
|
|
}
|
|
}
|