examples: Document example_vm.c file

This commit is contained in:
Paweł Bylica 2018-10-18 14:02:35 +02:00
parent 1933836aa2
commit 997d797816
No known key found for this signature in database
GPG Key ID: 7A0C037434FE77EF
1 changed files with 9 additions and 0 deletions

View File

@ -2,6 +2,15 @@
* Copyright 2018 The EVMC Authors.
* Licensed under the Apache License, Version 2.0. See the LICENSE file.
*/
/// @file
/// Example implementation of the EVMC VM interface.
///
/// This VM does not do anything useful except for showing
/// how EVMC VM API should be implemented.
/// The inplementation is done in C only, but could be done in C++ in very
/// similar way.
#include "example_vm.h"
#include <limits.h>