0
0
Fork 0
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2024-10-19 05:01:39 +00:00
ryujinx-fork/ChocolArm64/Decoder/IAOpCodeLit.cs

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