diff --git a/include/evmc/instructions.h b/include/evmc/instructions.h index 1dc50b9..a86cf9d 100644 --- a/include/evmc/instructions.h +++ b/include/evmc/instructions.h @@ -3,13 +3,19 @@ * Licensed under the MIT License. See the LICENSE file. */ +/** + * EVM Instruction Tables + * + * A collection of metrics for EVM1 instruction set. + * + * @defgroup instructions EVM Instructions + * @{ + */ #pragma once #include #include -#include - #if __cplusplus extern "C" { #endif @@ -209,3 +215,5 @@ EVMC_EXPORT const char* const* evmc_get_instruction_names_table(enum evmc_revisi #if __cplusplus } #endif + +/** @} */