Format and naming

This commit is contained in:
lazymio
2021-11-04 20:04:57 +01:00
parent db90f39ac6
commit b9c0066a47
56 changed files with 249 additions and 93 deletions

View File

@ -1,5 +1,7 @@
# For Unicorn Engine. AUTO-GENERATED FILE, DO NOT EDIT [arm64_const.py]
# ARM64 CPU
UC_CPU_AARCH64_A57 = 0
UC_CPU_AARCH64_A53 = 1
UC_CPU_AARCH64_A72 = 2

View File

@ -1,5 +1,7 @@
# For Unicorn Engine. AUTO-GENERATED FILE, DO NOT EDIT [arm_const.py]
# ARM CPU
UC_CPU_ARM_926 = 0
UC_CPU_ARM_946 = 1
UC_CPU_ARM_1026 = 2

View File

@ -1,5 +1,7 @@
# For Unicorn Engine. AUTO-GENERATED FILE, DO NOT EDIT [m68k_const.py]
# M68K CPU
UC_CPU_M5206_CPU = 0
UC_CPU_M68000_CPU = 1
UC_CPU_M68020_CPU = 2

View File

@ -1,5 +1,7 @@
# For Unicorn Engine. AUTO-GENERATED FILE, DO NOT EDIT [mips_const.py]
# MIPS32 CPUS
UC_CPU_MIPS32_4KC = 0
UC_CPU_MIPS32_4KM = 1
UC_CPU_MIPS32_4KECR1 = 2
@ -17,6 +19,8 @@ UC_CPU_MIPS32_P5600 = 13
UC_CPU_MIPS32_MIPS32R6_GENERIC = 14
UC_CPU_MIPS32_I7200 = 15
# MIPS64 CPUS
UC_CPU_MIPS64_R4000 = 0
UC_CPU_MIPS64_VR5432 = 1
UC_CPU_MIPS64_5KC = 2

View File

@ -1,5 +1,7 @@
# For Unicorn Engine. AUTO-GENERATED FILE, DO NOT EDIT [ppc_const.py]
# PPC CPU
UC_CPU_PPC_401 = 0
UC_CPU_PPC_401A1 = 1
UC_CPU_PPC_401B2 = 2
@ -291,6 +293,8 @@ UC_CPU_PPC_7457A_V1_1 = 287
UC_CPU_PPC_7447A_V1_2 = 288
UC_CPU_PPC_7457A_V1_2 = 289
# PPC64 CPU
UC_CPU_PPC_E5500 = 0
UC_CPU_PPC_E6500 = 1
UC_CPU_PPC_970_V2_2 = 2

View File

@ -1,10 +1,14 @@
# For Unicorn Engine. AUTO-GENERATED FILE, DO NOT EDIT [riscv_const.py]
# RISCV32 CPU
UC_CPU_RISCV32_ANY = 0
UC_CPU_RISCV32_BASE32 = 1
UC_CPU_RISCV32_SIFIVE_E31 = 2
UC_CPU_RISCV32_SIFIVE_U34 = 3
# RISCV64 CPU
UC_CPU_RISCV64_ANY = 0
UC_CPU_RISCV64_BASE64 = 1
UC_CPU_RISCV64_SIFIVE_E51 = 2

View File

@ -1,18 +1,22 @@
# For Unicorn Engine. AUTO-GENERATED FILE, DO NOT EDIT [sparc_const.py]
UC_CPU_SPARC_FUJITSU_MB86904 = 0
UC_CPU_SPARC_FUJITSU_MB86907 = 1
UC_CPU_SPARC_TI_MICROSPARC_I = 2
UC_CPU_SPARC_TI_MICROSPARC_II = 3
UC_CPU_SPARC_TI_MICROSPARC_IIEP = 4
UC_CPU_SPARC_TI_SUPERSPARC_40 = 5
UC_CPU_SPARC_TI_SUPERSPARC_50 = 6
UC_CPU_SPARC_TI_SUPERSPARC_51 = 7
UC_CPU_SPARC_TI_SUPERSPARC_60 = 8
UC_CPU_SPARC_TI_SUPERSPARC_61 = 9
UC_CPU_SPARC_TI_SUPERSPARC_II = 10
UC_CPU_SPARC_LEON2 = 11
UC_CPU_SPARC_LEON3 = 12
# SPARC32 CPU
UC_CPU_SPARC32_FUJITSU_MB86904 = 0
UC_CPU_SPARC32_FUJITSU_MB86907 = 1
UC_CPU_SPARC32_TI_MICROSPARC_I = 2
UC_CPU_SPARC32_TI_MICROSPARC_II = 3
UC_CPU_SPARC32_TI_MICROSPARC_IIEP = 4
UC_CPU_SPARC32_TI_SUPERSPARC_40 = 5
UC_CPU_SPARC32_TI_SUPERSPARC_50 = 6
UC_CPU_SPARC32_TI_SUPERSPARC_51 = 7
UC_CPU_SPARC32_TI_SUPERSPARC_60 = 8
UC_CPU_SPARC32_TI_SUPERSPARC_61 = 9
UC_CPU_SPARC32_TI_SUPERSPARC_II = 10
UC_CPU_SPARC32_LEON2 = 11
UC_CPU_SPARC32_LEON3 = 12
# SPARC64 CPU
UC_CPU_SPARC64_FUJITSU = 0
UC_CPU_SPARC64_FUJITSU_III = 1

View File

@ -1,5 +1,7 @@
# For Unicorn Engine. AUTO-GENERATED FILE, DO NOT EDIT [x86_const.py]
# X86 CPU
UC_CPU_X86_QEMU64 = 0
UC_CPU_X86_PHENOM = 1
UC_CPU_X86_CORE2DUO = 2