10 lines
178 B
C#
10 lines
178 B
C#
|
namespace ARMeilleure.Decoders
|
||
|
{
|
||
|
interface IOpCodeAluRs : IOpCodeAlu
|
||
|
{
|
||
|
int Shift { get; }
|
||
|
int Rm { get; }
|
||
|
|
||
|
ShiftType ShiftType { get; }
|
||
|
}
|
||
|
}
|