mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 09:08:38 +00: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; }
|
|
}
|
|
} |