UnicornArch.cs 542 B

1234567891011121314
  1. namespace Ryujinx.Tests.Unicorn.Native
  2. {
  3. public enum UnicornArch : uint
  4. {
  5. UC_ARCH_ARM = 1, // ARM architecture (including Thumb, Thumb-2)
  6. UC_ARCH_ARM64, // ARM-64, also called AArch64
  7. UC_ARCH_MIPS, // Mips architecture
  8. UC_ARCH_X86, // X86 architecture (including x86 & x86-64)
  9. UC_ARCH_PPC, // PowerPC architecture (currently unsupported)
  10. UC_ARCH_SPARC, // Sparc architecture
  11. UC_ARCH_M68K, // M68K architecture
  12. UC_ARCH_MAX,
  13. }
  14. }