rjx-mirror/Ryujinx/Cpu/Decoder/IAOpCodeLit.cs
2018-02-04 20:08:20 -03:00

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