mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 16:08:39 +00:00
19 lines
332 B
C#
19 lines
332 B
C#
|
using System.Reflection.Emit;
|
||
|
|
||
|
namespace ChocolArm64.Translation
|
||
|
{
|
||
|
struct ILOpCode : IILEmit
|
||
|
{
|
||
|
private OpCode _ilOp;
|
||
|
|
||
|
public ILOpCode(OpCode ilOp)
|
||
|
{
|
||
|
_ilOp = ilOp;
|
||
|
}
|
||
|
|
||
|
public void Emit(ILEmitter context)
|
||
|
{
|
||
|
context.Generator.Emit(_ilOp);
|
||
|
}
|
||
|
}
|
||
|
}
|