Ryujinx/ChocolArm64/Instruction/AInst.cs

20 lines
585 B
C#

using System;
namespace ChocolArm64.Instruction
{
struct AInst
{
public AInstInterpreter Interpreter { get; private set; }
public AInstEmitter Emitter { get; private set; }
public Type Type { get; private set; }
public static AInst Undefined => new AInst(null, AInstEmit.Und, null);
public AInst(AInstInterpreter Interpreter, AInstEmitter Emitter, Type Type)
{
this.Interpreter = Interpreter;
this.Emitter = Emitter;
this.Type = Type;
}
}
}