1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-01-15 20:30:04 -06:00
ryujinx/ARMeilleure/Decoders/IOpCode32AluRsImm.cs

10 lines
189 B
C#
Raw Normal View History

2022-02-17 16:39:45 -06:00
namespace ARMeilleure.Decoders
{
interface IOpCode32AluRsImm : IOpCode32Alu
{
int Rm { get; }
int Immediate { get; }
ShiftType ShiftType { get; }
}
}