18 lines
415 B
C#
18 lines
415 B
C#
|
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;
|
||
|
}
|
||
|
}
|
||
|
}
|