1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-01-16 04:40:05 -06:00
ryujinx/ChocolArm64/Decoders/IOpCodeLit64.cs

11 lines
240 B
C#
Raw Normal View History

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