diff options
author | bloodstalker <thabogre@gmail.com> | 2018-06-30 04:54:49 +0000 |
---|---|---|
committer | bloodstalker <thabogre@gmail.com> | 2018-06-30 04:54:49 +0000 |
commit | 0e3c6169dfe442fa27f608528477bf04a6bdba62 (patch) | |
tree | bb6e5ebde8c06db37d7202da2ac11d042920ad5a /dwasm-cpp/dwasm.cpp | |
parent | update (diff) | |
download | dwasm-0e3c6169dfe442fa27f608528477bf04a6bdba62.tar.gz dwasm-0e3c6169dfe442fa27f608528477bf04a6bdba62.zip |
update
Diffstat (limited to '')
-rw-r--r-- | dwasm-cpp/dwasm.cpp | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/dwasm-cpp/dwasm.cpp b/dwasm-cpp/dwasm.cpp index 3d3d4fe..35ab040 100644 --- a/dwasm-cpp/dwasm.cpp +++ b/dwasm-cpp/dwasm.cpp @@ -1,8 +1,32 @@ + +/**********************************************************************************************************************/ +/*first line intentionally left blank.*/ +/*wasm interpreter*/ +/*Copyright (C) 2018 Farzad Sadeghi + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; either version 3 +of the License, or (at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.*/ +/**********************************************************************************************************************/ #include <iostream> #include <string> #include <vector> +#include "dwasm.hpp" #include "wasm.h" int main (int argc, char** argv) { return 0; } +/**********************************************************************************************************************/ +/*last line intentionally left blank.*/ + |