add readme

This commit is contained in:
Ilya Rezvov
2018-01-23 09:54:18 -08:00
parent a200b5a62d
commit 995d2be41d
2 changed files with 19 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
# Haskell WebAssembly Toolkit
## Goals
* Provide tool WebAssembly code generation for Haskell
* Create infrastructure for Cmm to WebAssembly code generator
* Have Fun :)
## Status
* Lexer: supports nested block comments and all lexemes from Spec
* Parser: parses all examples from WebAssembly Core TestsSuit
## ToDo
* Improve error messages for text representation parsing
* Renaming Phase: substitute identifiers with correct indexes, expand all implicit type declarations)
* Verification Phase: execute verification procedure from Spec
* Text Representation pretty-printer
* Binary format parser/serializer
* Execution Phase: implement simple interpreter for running WebAssembly Core TestsSuit assertions
+1
View File
@@ -0,0 +1 @@
(func) (memory 0) (func (export "f"))