mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 08:38:41 +00:00
11 lines
237 B
C#
11 lines
237 B
C#
namespace ChocolArm64.Decoder
|
|
{
|
|
interface IAOpCodeLit : IAOpCode
|
|
{
|
|
int Rt { get; }
|
|
long Imm { get; }
|
|
int Size { get; }
|
|
bool Signed { get; }
|
|
bool Prefetch { get; }
|
|
}
|
|
} |