Ryujinx/ChocolArm64/Decoders/ShiftType.cs

10 lines
132 B
C#
Raw Normal View History

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