mirror of
https://github.com/Ryubing/Ryujinx.git
synced 2025-11-28 06:02:22 -05:00
Move solution and projects to src
This commit is contained in:
17
src/ARMeilleure/Decoders/IOpCode.cs
Normal file
17
src/ARMeilleure/Decoders/IOpCode.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using ARMeilleure.IntermediateRepresentation;
|
||||
|
||||
namespace ARMeilleure.Decoders
|
||||
{
|
||||
interface IOpCode
|
||||
{
|
||||
ulong Address { get; }
|
||||
|
||||
InstDescriptor Instruction { get; }
|
||||
|
||||
RegisterSize RegisterSize { get; }
|
||||
|
||||
int GetBitsCount();
|
||||
|
||||
OperandType GetOperandType();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user