mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-07-25 15:19:50 -06: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; }
|
|
}
|
|
} |