forked from Mirror/Ryujinx
17 lines
No EOL
303 B
C#
17 lines
No EOL
303 B
C#
using ARMeilleure.IntermediateRepresentation;
|
|
|
|
namespace ARMeilleure.Decoders
|
|
{
|
|
interface IOpCode
|
|
{
|
|
ulong Address { get; }
|
|
|
|
InstDescriptor Instruction { get; }
|
|
|
|
RegisterSize RegisterSize { get; }
|
|
|
|
int GetBitsCount();
|
|
|
|
OperandType GetOperandType();
|
|
}
|
|
} |