aboutsummaryrefslogtreecommitdiffstats
path: root/dwasm-cpp/dwasm.cpp
blob: e326411b2166453d9e897e6f361f8d01c95e6b95 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/**********************************************************************************************************************/
/*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 <cstddef>
#include <fstream>
#include <iostream>
#include <string>
#include <vector>
#include "dwasm.hpp"
#include "misc.hpp"
#include "wasm.h"
/**********************************************************************************************************************/
int main (int argc, char** argv) {
  std::string path = "../test/injected.wasm";
  std::ifstream wasm(path, std::ios_base::binary);
  read_header(wasm);
  //dump_file(wasm);
  return 0;
}
/**********************************************************************************************************************/
/*last line intentionally left blank.*/