Files
the-beast-roofer-edition/ChocolArm64/Decoder/IAOpCodeAluRx.cs
T

10 lines
176 B
C#

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