mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 07:38:33 +00:00
02a8e7fc93
* Remove unnecessary usings * Fix CastExpression while I'm at it
15 lines
535 B
C#
15 lines
535 B
C#
namespace Ryujinx.Tests.Unicorn.Native
|
|
{
|
|
public enum UnicornArch
|
|
{
|
|
UC_ARCH_ARM = 1, // ARM architecture (including Thumb, Thumb-2)
|
|
UC_ARCH_ARM64, // ARM-64, also called AArch64
|
|
UC_ARCH_MIPS, // Mips architecture
|
|
UC_ARCH_X86, // X86 architecture (including x86 & x86-64)
|
|
UC_ARCH_PPC, // PowerPC architecture (currently unsupported)
|
|
UC_ARCH_SPARC, // Sparc architecture
|
|
UC_ARCH_M68K, // M68K architecture
|
|
UC_ARCH_MAX,
|
|
}
|
|
}
|