AIntType.cs 222 B

1234567891011121314
  1. namespace ChocolArm64.Decoder
  2. {
  3. enum AIntType
  4. {
  5. UInt8 = 0,
  6. UInt16 = 1,
  7. UInt32 = 2,
  8. UInt64 = 3,
  9. Int8 = 4,
  10. Int16 = 5,
  11. Int32 = 6,
  12. Int64 = 7
  13. }
  14. }