mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-07 20:28:47 +00:00
10 lines
165 B
C#
10 lines
165 B
C#
|
namespace ARMeilleure.Decoders
|
||
|
{
|
||
|
interface IOpCode32Alu : IOpCode32
|
||
|
{
|
||
|
int Rd { get; }
|
||
|
int Rn { get; }
|
||
|
|
||
|
bool SetFlags { get; }
|
||
|
}
|
||
|
}
|