0
0
mirror of https://git.743378673.xyz/MeloNX/MeloNX.git synced 2025-05-15 09:15:18 +00:00
MeloNX/Ryujinx/Cpu/Decoder/IAOpCodeAluRx.cs
2018-02-04 20:08:20 -03:00

10 lines
176 B
C#

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