mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-05-15 09:02:32 +00:00
9 lines
156 B
C#
9 lines
156 B
C#
namespace ARMeilleure.Decoders
|
|
{
|
|
interface IOpCode32AluImm : IOpCode32Alu
|
|
{
|
|
int Immediate { get; }
|
|
|
|
bool IsRotated { get; }
|
|
}
|
|
}
|