Ryujinx/ChocolArm64/Decoders/IntType.cs

14 lines
222 B
C#
Raw Normal View History

namespace ChocolArm64.Decoders
2018-02-05 00:08:20 +01:00
{
enum IntType
2018-02-05 00:08:20 +01:00
{
UInt8 = 0,
UInt16 = 1,
UInt32 = 2,
UInt64 = 3,
Int8 = 4,
Int16 = 5,
Int32 = 6,
Int64 = 7
}
}