mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2026-03-11 16:25:14 +09:00
8 lines
155 B
C#
8 lines
155 B
C#
namespace ARMeilleure.Decoders
|
|
{
|
|
interface IOpCode32Alu : IOpCode32, IOpCode32HasSetFlags
|
|
{
|
|
int Rd { get; }
|
|
int Rn { get; }
|
|
}
|
|
} |