mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-07-22 17:37:12 +02:00
10 lines
180 B
C#
10 lines
180 B
C#
namespace ARMeilleure.Decoders
|
|
{
|
|
interface IOpCode32AluRsReg : IOpCode32Alu
|
|
{
|
|
int Rm { get; }
|
|
int Rs { get; }
|
|
|
|
ShiftType ShiftType { get; }
|
|
}
|
|
}
|