20 lines
No EOL
585 B
C#
20 lines
No EOL
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;
|
|
}
|
|
}
|
|
} |