mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 01:38:34 +00:00
8 lines
155 B
C#
8 lines
155 B
C#
namespace ARMeilleure.Decoders
|
|
{
|
|
interface IOpCode32Alu : IOpCode32, IOpCode32HasSetFlags
|
|
{
|
|
int Rd { get; }
|
|
int Rn { get; }
|
|
}
|
|
} |