Remove armeb-softmmu and aarch64eb-softmmu
This commit is contained in:
@ -19,7 +19,8 @@
|
||||
// They should be updated when changes are made to the uc_mode enum typedef.
|
||||
#define UC_MODE_ARM_MASK \
|
||||
(UC_MODE_ARM | UC_MODE_THUMB | UC_MODE_LITTLE_ENDIAN | UC_MODE_MCLASS | \
|
||||
UC_MODE_ARM926 | UC_MODE_ARM946 | UC_MODE_ARM1176 | UC_MODE_BIG_ENDIAN)
|
||||
UC_MODE_ARM926 | UC_MODE_ARM946 | UC_MODE_ARM1176 | UC_MODE_BIG_ENDIAN | \
|
||||
UC_MODE_ARMBE8)
|
||||
#define UC_MODE_MIPS_MASK \
|
||||
(UC_MODE_MIPS32 | UC_MODE_MIPS64 | UC_MODE_LITTLE_ENDIAN | \
|
||||
UC_MODE_BIG_ENDIAN)
|
||||
|
@ -116,7 +116,9 @@ typedef enum uc_mode {
|
||||
UC_MODE_THUMB = 1 << 4, // THUMB mode (including Thumb-2)
|
||||
// Depreciated, use UC_ARM_CPU_* with uc_ctl instead.
|
||||
UC_MODE_MCLASS = 1 << 5, // ARM's Cortex-M series.
|
||||
UC_MODE_V8 = 1 << 6, // ARMv8 A32 encodings for ARM (currently unsupported)
|
||||
UC_MODE_V8 = 1 << 6, // ARMv8 A32 encodings for ARM
|
||||
UC_MODE_ARMBE8 = 1 << 7, // Big-endian data and Little-endian code.
|
||||
// Legacy support for UC1 only.
|
||||
|
||||
// arm (32bit) cpu types
|
||||
// Depreciated, use UC_ARM_CPU_* with uc_ctl instead.
|
||||
|
Reference in New Issue
Block a user