mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-03-15 14:20:17 +00:00
10 lines
No EOL
182 B
C#
10 lines
No EOL
182 B
C#
namespace ARMeilleure.Decoders
|
|
{
|
|
interface IOpCode32AluRsReg : IOpCode32Alu
|
|
{
|
|
int Rm { get; }
|
|
int Rs { get; }
|
|
|
|
ShiftType ShiftType { get; }
|
|
}
|
|
} |