mirror of
https://git.zaroz.cloud/nintendo-back-up/Ryujinx.git
synced 2025-06-07 19:55:29 +00: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; }
|
|
}
|
|
}
|