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();
|
||
|
}
|
||
|
}
|