WebAssembly Interpreter
Go to file
2025-05-10 17:51:18 +02:00
tests Initial Commit 2025-05-10 17:19:05 +02:00
.gitignore doc: add README and gitignore 2025-05-10 17:48:14 +02:00
LICENSE Initial Commit 2025-05-10 17:19:05 +02:00
Makefile Initial Commit 2025-05-10 17:19:05 +02:00
README.md doc: add README and gitignore 2025-05-10 17:48:14 +02:00
wai.c Use u_char instead of char to avoid buffer overflow error 2025-05-10 17:51:18 +02:00

WAI

WebAssembly Interpreter

Usage

Dependencies: wat2wasm from wabt

make 
make tests
./wai tests/factorial.wasw

Resources

License

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, see <https://www.gnu.org/licenses/>.