mirror of
https://github.com/Ryubing/Ryujinx.git
synced 2025-11-26 08:22:22 -05:00
9 lines
152 B
C#
9 lines
152 B
C#
namespace ARMeilleure.Decoders
|
|
{
|
|
interface IOpCode32AluUx : IOpCode32AluReg
|
|
{
|
|
int RotateBits { get; }
|
|
bool Add { get; }
|
|
}
|
|
}
|