2021-03-27 11:12:05 -03:00
|
|
|
|
using Ryujinx.HLE.HOS.Tamper.Operations;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace Ryujinx.HLE.HOS.Tamper
|
|
|
|
|
{
|
2022-12-05 16:47:39 +03:00
|
|
|
|
readonly struct OperationBlock
|
2021-03-27 11:12:05 -03:00
|
|
|
|
{
|
|
|
|
|
public byte[] BaseInstruction { get; }
|
|
|
|
|
public List<IOperation> Operations { get; }
|
|
|
|
|
|
|
|
|
|
public OperationBlock(byte[] baseInstruction)
|
|
|
|
|
{
|
|
|
|
|
BaseInstruction = baseInstruction;
|
|
|
|
|
Operations = new List<IOperation>();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|