0
0
mirror of https://git.743378673.xyz/MeloNX/MeloNX.git synced 2025-05-14 08:45:18 +00:00
MeloNX/Ryujinx/Cpu/Decoder/IAOpCodeLit.cs
2018-02-04 20:08:20 -03:00

11 lines
237 B
C#

namespace ChocolArm64.Decoder
{
interface IAOpCodeLit : IAOpCode
{
int Rt { get; }
long Imm { get; }
int Size { get; }
bool Signed { get; }
bool Prefetch { get; }
}
}