1
0
mirror of https://github.com/Ryujinx/Ryujinx.git synced 2025-01-15 11:01:57 -08:00

10 lines
163 B
C#
Raw Normal View History

2018-02-04 20:08:20 -03:00
namespace ChocolArm64.Decoder
{
interface IAOpCodeAlu : IAOpCode
{
int Rd { get; }
int Rn { get; }
ADataOp DataOp { get; }
}
}