11 lines
No EOL
237 B
C#
11 lines
No EOL
237 B
C#
namespace ChocolArm64.Decoder
|
|
{
|
|
interface IAOpCodeLit : IAOpCode
|
|
{
|
|
int Rt { get; }
|
|
long Imm { get; }
|
|
int Size { get; }
|
|
bool Signed { get; }
|
|
bool Prefetch { get; }
|
|
}
|
|
} |