mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-05-02 03:10:51 -07:00
17 lines
421 B
C#
17 lines
421 B
C#
using Ryujinx.HLE.HOS.Tamper.Operations;
|
|
|
|
namespace Ryujinx.HLE.HOS.Tamper.CodeEmitters
|
|
{
|
|
/// <summary>
|
|
/// Code type 0xFF1 resumes the current process.
|
|
/// </summary>
|
|
class ResumeProcess
|
|
{
|
|
// FF1?????
|
|
public static void Emit(byte[] instruction, CompilationContext context)
|
|
{
|
|
context.CurrentOperations.Add(new OpProcCtrl(context.Process, false));
|
|
}
|
|
}
|
|
}
|