0
0
Fork 0
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2024-12-23 17:25:50 +00:00
ryujinx-fork/ChocolArm64/Instructions/Inst.cs

18 lines
372 B
C#
Raw Normal View History

using System;
namespace ChocolArm64.Instructions
{
struct Inst
{
public InstEmitter Emitter { get; }
public Type Type { get; }
public static Inst Undefined => new Inst(InstEmit.Und, null);
public Inst(InstEmitter emitter, Type type)
{
Emitter = emitter;
Type = type;
}
}
}