mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-07 20:28:47 +00:00
11 lines
241 B
C#
11 lines
241 B
C#
|
namespace ARMeilleure.Decoders
|
||
|
{
|
||
|
interface IOpCodeLit : IOpCode
|
||
|
{
|
||
|
int Rt { get; }
|
||
|
long Immediate { get; }
|
||
|
int Size { get; }
|
||
|
bool Signed { get; }
|
||
|
bool Prefetch { get; }
|
||
|
}
|
||
|
}
|