10 lines
132 B
C#
Raw Normal View History

namespace ChocolArm64.Decoders
2018-02-04 20:08:20 -03:00
{
enum ShiftType
2018-02-04 20:08:20 -03:00
{
Lsl = 0,
Lsr = 1,
Asr = 2,
Ror = 3
2018-02-04 20:08:20 -03:00
}
}