mirror of
https://git.743378673.xyz/MeloNX/MeloNX.git
synced 2025-06-27 19:06:23 +02:00
10 lines
187 B
C#
10 lines
187 B
C#
namespace ARMeilleure.Decoders
|
|
{
|
|
interface IOpCode32AluRsImm : IOpCode32Alu
|
|
{
|
|
int Rm { get; }
|
|
int Immediate { get; }
|
|
|
|
ShiftType ShiftType { get; }
|
|
}
|
|
}
|