diff --git a/include/Zydis/Generated/EnumISAExt.h b/include/Zydis/Generated/EnumISAExt.h index 0f3eb1e..113df91 100644 --- a/include/Zydis/Generated/EnumISAExt.h +++ b/include/Zydis/Generated/EnumISAExt.h @@ -156,6 +156,13 @@ enum ZydisISAExts ZYDIS_ISA_EXT_XSAVEC, ZYDIS_ISA_EXT_XSAVEOPT, ZYDIS_ISA_EXT_XSAVES, + + /** + * @brief Maximum value of this enum. + */ ZYDIS_ISA_EXT_MAX_VALUE = ZYDIS_ISA_EXT_XSAVES, + /** + * @brief Minimum amount of bits required to store a value of this enum. + */ ZYDIS_ISA_EXT_MIN_BITS = 0x0008 }; diff --git a/include/Zydis/Generated/EnumISASet.h b/include/Zydis/Generated/EnumISASet.h index cc5d574..30e49d4 100644 --- a/include/Zydis/Generated/EnumISASet.h +++ b/include/Zydis/Generated/EnumISASet.h @@ -76,6 +76,13 @@ enum ZydisISASets ZYDIS_ISA_SET_XSAVEC, ZYDIS_ISA_SET_XSAVEOPT, ZYDIS_ISA_SET_XSAVES, + + /** + * @brief Maximum value of this enum. + */ ZYDIS_ISA_SET_MAX_VALUE = ZYDIS_ISA_SET_XSAVES, + /** + * @brief Minimum amount of bits required to store a value of this enum. + */ ZYDIS_ISA_SET_MIN_BITS = 0x0007 }; diff --git a/include/Zydis/Generated/EnumInstructionCategory.h b/include/Zydis/Generated/EnumInstructionCategory.h index 4a14b7b..112e061 100644 --- a/include/Zydis/Generated/EnumInstructionCategory.h +++ b/include/Zydis/Generated/EnumInstructionCategory.h @@ -100,6 +100,13 @@ enum ZydisInstructionCategories ZYDIS_CATEGORY_XOP, ZYDIS_CATEGORY_XSAVE, ZYDIS_CATEGORY_XSAVEOPT, + + /** + * @brief Maximum value of this enum. + */ ZYDIS_CATEGORY_MAX_VALUE = ZYDIS_CATEGORY_XSAVEOPT, + /** + * @brief Minimum amount of bits required to store a value of this enum. + */ ZYDIS_CATEGORY_MIN_BITS = 0x0007 }; diff --git a/include/Zydis/Generated/EnumMnemonic.h b/include/Zydis/Generated/EnumMnemonic.h index a9ee40a..947022d 100644 --- a/include/Zydis/Generated/EnumMnemonic.h +++ b/include/Zydis/Generated/EnumMnemonic.h @@ -1591,6 +1591,13 @@ enum ZydisMnemonics ZYDIS_MNEMONIC_XSAVES64, ZYDIS_MNEMONIC_XSETBV, ZYDIS_MNEMONIC_XTEST, + + /** + * @brief Maximum value of this enum. + */ ZYDIS_MNEMONIC_MAX_VALUE = ZYDIS_MNEMONIC_XTEST, + /** + * @brief Minimum amount of bits required to store a value of this enum. + */ ZYDIS_MNEMONIC_MIN_BITS = 0x000B };