mirror of
https://github.com/GreemDev/Ryujinx.git
synced 2024-11-16 14:33:17 +01:00
10 lines
176 B
C#
10 lines
176 B
C#
namespace ChocolArm64.Decoder
|
|
{
|
|
interface IAOpCodeAluRx : IAOpCodeAlu
|
|
{
|
|
int Shift { get; }
|
|
int Rm { get; }
|
|
|
|
AIntType IntType { get; }
|
|
}
|
|
} |