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