mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-04-26 23:47:45 +02: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; }
|
|
}
|
|
} |