aboutsummaryrefslogblamecommitdiffstats
path: root/dwasm-cpp/dwasm.cpp
blob: e326411b2166453d9e897e6f361f8d01c95e6b95 (plain) (tree)



















                                                                                                                        

                  


                   
                    
                   
                 
                                                                                                                        
                                  



                                                  

           


                                                                                                                        
/**********************************************************************************************************************/
/*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.*/