0
0
Fork 0
This repository has been archived on 2024-10-12. You can view files and clone it, but cannot push or open issues or pull requests.
ryujinx-final/ChocolArm64/Instructions/Inst.cs

20 lines
562 B
C#
Raw Normal View History

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