mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2025-09-01 07:26:27 -05:00
aloha
This commit is contained in:
18
Ryujinx/Cpu/Instruction/AInst.cs
Normal file
18
Ryujinx/Cpu/Instruction/AInst.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user