aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx/Cpu/Translation/AILOpCode.cs
blob: a4bc93a0655fef36ac8e96acedbee4f8f1c61ecb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
using System.Reflection.Emit;

namespace ChocolArm64.Translation
{
    struct AILOpCode : IAILEmit
    {
        private OpCode ILOp;

        public AILOpCode(OpCode ILOp)
        {
            this.ILOp = ILOp;
        }

        public void Emit(AILEmitter Context)
        {
            Context.Generator.Emit(ILOp);
        }
    }
}