1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-08-22 20:26:28 -05:00
Files
ryujinx/ChocolArm64/Decoder/IAOpCodeAluRx.cs

10 lines
176 B
C#

namespace ChocolArm64.Decoder
{
interface IAOpCodeAluRx : IAOpCodeAlu
{
int Shift { get; }
int Rm { get; }
AIntType IntType { get; }
}
}