Ryujinx/ChocolArm64/Decoders/IOpCodeLit64.cs

11 lines
240 B
C#
Raw Normal View History

namespace ChocolArm64.Decoders
2018-02-05 00:08:20 +01:00
{
interface IOpCodeLit64 : IOpCode64
2018-02-05 00:08:20 +01:00
{
int Rt { get; }
long Imm { get; }
int Size { get; }
bool Signed { get; }
bool Prefetch { get; }
}
}