mirror of
https://github.com/Ryubing/Ryujinx.git
synced 2025-11-29 15:02:22 -05:00
Move solution and projects to src
This commit is contained in:
18
src/ARMeilleure/Decoders/InstDescriptor.cs
Normal file
18
src/ARMeilleure/Decoders/InstDescriptor.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using ARMeilleure.Instructions;
|
||||
|
||||
namespace ARMeilleure.Decoders
|
||||
{
|
||||
readonly struct InstDescriptor
|
||||
{
|
||||
public static InstDescriptor Undefined => new InstDescriptor(InstName.Und, InstEmit.Und);
|
||||
|
||||
public InstName Name { get; }
|
||||
public InstEmitter Emitter { get; }
|
||||
|
||||
public InstDescriptor(InstName name, InstEmitter emitter)
|
||||
{
|
||||
Name = name;
|
||||
Emitter = emitter;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user