mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-03-15 10:50:17 +00:00
15 lines
278 B
C#
15 lines
278 B
C#
namespace ARMeilleure.Decoders
|
|
{
|
|
interface IOpCode32Mem : IOpCode32
|
|
{
|
|
int Rt { get; }
|
|
int Rn { get; }
|
|
|
|
bool WBack { get; }
|
|
bool IsLoad { get; }
|
|
bool Index { get; }
|
|
bool Add { get; }
|
|
|
|
int Immediate { get; }
|
|
}
|
|
}
|