mirror of
https://git.zaroz.cloud/nintendo-back-up/Ryujinx.git
synced 2025-12-17 16:02:40 +00: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