mirror of
https://github.com/GreemDev/Ryujinx
synced 2025-01-09 20:56:54 +01:00
10 lines
165 B
C#
10 lines
165 B
C#
|
namespace ChocolArm64.Decoders
|
||
|
{
|
||
|
interface IOpCodeAlu32 : IOpCode32
|
||
|
{
|
||
|
int Rd { get; }
|
||
|
int Rn { get; }
|
||
|
|
||
|
bool SetFlags { get; }
|
||
|
}
|
||
|
}
|