docs: Expose documentation for instructions module

This commit is contained in:
Paweł Bylica 2018-07-13 15:36:12 +02:00
parent 687d0a38a8
commit 31d296e1d7
No known key found for this signature in database
GPG Key ID: 7A0C037434FE77EF
1 changed files with 10 additions and 2 deletions

View File

@ -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 <evmc/evmc.h>
#include <evmc/utils.h>
#include <stdint.h>
#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
/** @} */