mirror of
https://git.ryujinx.app/projects/Kenji-NX.git
synced 2026-09-26 10:19:02 +02:00
9 lines
158 B
C#
9 lines
158 B
C#
namespace ARMeilleure.Decoders
|
|
{
|
|
interface IOpCode32AluImm : IOpCode32Alu
|
|
{
|
|
int Immediate { get; }
|
|
|
|
bool IsRotated { get; }
|
|
}
|
|
} |