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

@ -2,6 +2,8 @@ package unicorn
// For Unicorn Engine. AUTO-GENERATED FILE, DO NOT EDIT [arm64_const.go]
const (
// ARM64 CPU
CPU_AARCH64_A57 = 0
CPU_AARCH64_A53 = 1
CPU_AARCH64_A72 = 2

View File

@ -2,6 +2,8 @@ package unicorn
// For Unicorn Engine. AUTO-GENERATED FILE, DO NOT EDIT [arm_const.go]
const (
// ARM CPU
CPU_ARM_926 = 0
CPU_ARM_946 = 1
CPU_ARM_1026 = 2

View File

@ -2,6 +2,8 @@ package unicorn
// For Unicorn Engine. AUTO-GENERATED FILE, DO NOT EDIT [m68k_const.go]
const (
// M68K CPU
CPU_M5206_CPU = 0
CPU_M68000_CPU = 1
CPU_M68020_CPU = 2

View File

@ -2,6 +2,8 @@ package unicorn
// For Unicorn Engine. AUTO-GENERATED FILE, DO NOT EDIT [mips_const.go]
const (
// MIPS32 CPUS
CPU_MIPS32_4KC = 0
CPU_MIPS32_4KM = 1
CPU_MIPS32_4KECR1 = 2
@ -19,6 +21,8 @@ const (
CPU_MIPS32_MIPS32R6_GENERIC = 14
CPU_MIPS32_I7200 = 15
// MIPS64 CPUS
CPU_MIPS64_R4000 = 0
CPU_MIPS64_VR5432 = 1
CPU_MIPS64_5KC = 2

View File

@ -2,6 +2,8 @@ package unicorn
// For Unicorn Engine. AUTO-GENERATED FILE, DO NOT EDIT [ppc_const.go]
const (
// PPC CPU
CPU_PPC_401 = 0
CPU_PPC_401A1 = 1
CPU_PPC_401B2 = 2
@ -293,6 +295,8 @@ const (
CPU_PPC_7447A_V1_2 = 288
CPU_PPC_7457A_V1_2 = 289
// PPC64 CPU
CPU_PPC_E5500 = 0
CPU_PPC_E6500 = 1
CPU_PPC_970_V2_2 = 2

View File

@ -2,11 +2,15 @@ package unicorn
// For Unicorn Engine. AUTO-GENERATED FILE, DO NOT EDIT [riscv_const.go]
const (
// RISCV32 CPU
CPU_RISCV32_ANY = 0
CPU_RISCV32_BASE32 = 1
CPU_RISCV32_SIFIVE_E31 = 2
CPU_RISCV32_SIFIVE_U34 = 3
// RISCV64 CPU
CPU_RISCV64_ANY = 0
CPU_RISCV64_BASE64 = 1
CPU_RISCV64_SIFIVE_E51 = 2

View File

@ -2,19 +2,23 @@ package unicorn
// For Unicorn Engine. AUTO-GENERATED FILE, DO NOT EDIT [sparc_const.go]
const (
CPU_SPARC_FUJITSU_MB86904 = 0
CPU_SPARC_FUJITSU_MB86907 = 1
CPU_SPARC_TI_MICROSPARC_I = 2
CPU_SPARC_TI_MICROSPARC_II = 3
CPU_SPARC_TI_MICROSPARC_IIEP = 4
CPU_SPARC_TI_SUPERSPARC_40 = 5
CPU_SPARC_TI_SUPERSPARC_50 = 6
CPU_SPARC_TI_SUPERSPARC_51 = 7
CPU_SPARC_TI_SUPERSPARC_60 = 8
CPU_SPARC_TI_SUPERSPARC_61 = 9
CPU_SPARC_TI_SUPERSPARC_II = 10
CPU_SPARC_LEON2 = 11
CPU_SPARC_LEON3 = 12
// SPARC32 CPU
CPU_SPARC32_FUJITSU_MB86904 = 0
CPU_SPARC32_FUJITSU_MB86907 = 1
CPU_SPARC32_TI_MICROSPARC_I = 2
CPU_SPARC32_TI_MICROSPARC_II = 3
CPU_SPARC32_TI_MICROSPARC_IIEP = 4
CPU_SPARC32_TI_SUPERSPARC_40 = 5
CPU_SPARC32_TI_SUPERSPARC_50 = 6
CPU_SPARC32_TI_SUPERSPARC_51 = 7
CPU_SPARC32_TI_SUPERSPARC_60 = 8
CPU_SPARC32_TI_SUPERSPARC_61 = 9
CPU_SPARC32_TI_SUPERSPARC_II = 10
CPU_SPARC32_LEON2 = 11
CPU_SPARC32_LEON3 = 12
// SPARC64 CPU
CPU_SPARC64_FUJITSU = 0
CPU_SPARC64_FUJITSU_III = 1

View File

@ -2,6 +2,8 @@ package unicorn
// For Unicorn Engine. AUTO-GENERATED FILE, DO NOT EDIT [x86_const.go]
const (
// X86 CPU
CPU_X86_QEMU64 = 0
CPU_X86_PHENOM = 1
CPU_X86_CORE2DUO = 2