mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2026-04-26 18:32:51 +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; }
|
|
}
|
|
} |