mirror of
https://github.com/GreemDev/Ryujinx
synced 2024-11-26 03:31:56 +01:00
11 lines
No EOL
237 B
C#
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; }
|
|
}
|
|
} |