mirror of
https://git.zaroz.cloud/nintendo-back-up/Ryujinx.git
synced 2025-12-24 11:22:42 +00:00
17 lines
303 B
C#
17 lines
303 B
C#
using ARMeilleure.IntermediateRepresentation;
|
|
|
|
namespace ARMeilleure.Decoders
|
|
{
|
|
interface IOpCode
|
|
{
|
|
ulong Address { get; }
|
|
|
|
InstDescriptor Instruction { get; }
|
|
|
|
RegisterSize RegisterSize { get; }
|
|
|
|
int GetBitsCount();
|
|
|
|
OperandType GetOperandType();
|
|
}
|
|
} |