summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2015-11-11 20:38:18 -0800
committerAlon Zakai <alonzakai@gmail.com>2015-11-11 20:38:18 -0800
commita43caa75ce7293a4aea91228daf379f06817f5d8 (patch)
treecf19d50e137e9c4a80180bfb90d084f418e337f5 /README.md
parented47fbc9ce48e712548d937195e0f7d333da55c4 (diff)
downloadbinaryen-a43caa75ce7293a4aea91228daf379f06817f5d8.tar.gz
binaryen-a43caa75ce7293a4aea91228daf379f06817f5d8.tar.bz2
binaryen-a43caa75ce7293a4aea91228daf379f06817f5d8.zip
add simple example
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 3 insertions, 1 deletions
diff --git a/README.md b/README.md
index 4483a1a22..d8a059720 100644
--- a/README.md
+++ b/README.md
@@ -6,7 +6,9 @@ Binaryen is a C++ library for processing WebAssembly. It can:
* **Compile** asm.js to WebAssembly, which together with [Emscripten](http://emscripten.org), gives you a complete compiler toolchain from C and C++ to WebAssembly.
* **Polyfill** WebAssembly, by running it in the interpreter compiled to JavaScript, if the browser does not yet have native support.
-To provide those capabilities, Binaryen has a simple and flexible API for representing and processing WebAssembly modules. The interpreter, validator, pretty-printer, etc. are built on that foundation. (TODO: an example of writing a new processing pass.)
+To provide those capabilities, Binaryen has a simple and flexible API for representing and processing WebAssembly modules. The interpreter, validator, pretty-printer, etc. are built on that foundation. The core of this is in [wasm.h](https://github.com/WebAssembly/binaryen/blob/master/src/wasm.h), which contains both classes that define a WebAssembly module, and tools to process those.
+
+(TODO: an example of writing a new processing pass.)
## Tools