1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-02-21 14:48:27 -06:00

8 lines
155 B
C#

namespace ARMeilleure.Decoders
{
interface IOpCode32Alu : IOpCode32, IOpCode32HasSetFlags
{
int Rd { get; }
int Rn { get; }
}
}