mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 09:08:38 +00:00
10 lines
182 B
C#
10 lines
182 B
C#
|
namespace ARMeilleure.Decoders
|
|||
|
{
|
|||
|
interface IOpCode32AluRsReg : IOpCode32Alu
|
|||
|
{
|
|||
|
int Rm { get; }
|
|||
|
int Rs { get; }
|
|||
|
|
|||
|
ShiftType ShiftType { get; }
|
|||
|
}
|
|||
|
}
|