mirror of
https://git.zaroz.cloud/nintendo-back-up/Ryujinx.git
synced 2025-12-31 22:47:18 +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; }
|
|
}
|
|
} |