mirror of
https://git.743378673.xyz/MeloNX/MeloNX.git
synced 2025-06-28 03:16:23 +02:00
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();
|
|
}
|
|
} |