Ryujinx/ChocolArm64/Instruction/AInst.cs

18 lines
415 B
C#
Raw Normal View History

2018-02-05 00:08:20 +01:00
using System;
namespace ChocolArm64.Instruction
{
struct AInst
{
public AInstEmitter Emitter { get; private set; }
public Type Type { get; private set; }
public static AInst Undefined => new AInst(AInstEmit.Und, null);
public AInst(AInstEmitter Emitter, Type Type)
{
this.Emitter = Emitter;
this.Type = Type;
}
}
}