mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-09 20:38:38 +00:00
10 lines
178 B
C#
10 lines
178 B
C#
|
namespace ChocolArm64.Decoders
|
||
|
{
|
||
|
interface IOpCodeAluRx64 : IOpCodeAlu64
|
||
|
{
|
||
|
int Shift { get; }
|
||
|
int Rm { get; }
|
||
|
|
||
|
IntType IntType { get; }
|
||
|
}
|
||
|
}
|