mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-12-24 08:52:32 +01:00
11 lines
180 B
C#
11 lines
180 B
C#
namespace ARMeilleure.Decoders
|
|
{
|
|
interface IOpCode32AluRsReg : IOpCode32Alu
|
|
{
|
|
int Rm { get; }
|
|
int Rs { get; }
|
|
|
|
ShiftType ShiftType { get; }
|
|
}
|
|
}
|