0
0
Fork 0
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2024-12-23 18:45:44 +00:00
ryujinx-fork/ARMeilleure/Decoders/IOpCode32AluRsReg.cs

10 lines
182 B
C#
Raw Normal View History

2022-02-17 22:39:45 +00:00
namespace ARMeilleure.Decoders
{
interface IOpCode32AluRsReg : IOpCode32Alu
{
int Rm { get; }
int Rs { get; }
ShiftType ShiftType { get; }
}
}