aboutsummaryrefslogtreecommitdiffstats
path: root/dwasm-cpp/dwasm.cpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--dwasm-cpp/dwasm.cpp24
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.*/
+