Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 447 Bytes

README.md

File metadata and controls

17 lines (12 loc) · 447 Bytes

POC_wasm

First POC with wasm & emscripten

The c program write.c is compiled with emscripten.
You can clone or fork the project here: https://github.com/kripken/emscripten

Once the toolchain is setup :

emcc write.c -s WASM=1 -o write.html

It's generate write.html, write.js, write.wasm.

Input and button have been added to write.html.
write.js have been modified to relaunch c program each time the button is clicked.