mirror of
https://github.com/remko/waforth
synced 2025-01-17 18:11:39 +01:00
README tweak
This commit is contained in:
parent
5d2a92abcf
commit
45fc29550a
1 changed files with 6 additions and 4 deletions
10
README.md
10
README.md
|
@ -4,10 +4,12 @@ WAForth is a bootstrapping Forth interpreter and dynamic compiler for
|
|||
[WebAssembly](https://webassembly.org). You can see it in a demo
|
||||
[here](https://el-tramo.be/waforth/).
|
||||
|
||||
It is entirely written in (raw) WebAssembly, and the compiler
|
||||
generates WebAssembly code on the fly. The only parts for which it relies on
|
||||
external (JavaScript) code is to dynamically load modules (since WebAssembly [doesn't
|
||||
support JIT yet](https://webassembly.org/docs/future-features/#platform-independent-just-in-time-jit-compilation)),
|
||||
It is [entirely written in (raw)
|
||||
WebAssembly](https://github.com/remko/waforth/blob/master/src/waforth.wat), and
|
||||
the compiler generates WebAssembly code on the fly. The only parts for which it
|
||||
relies on external (JavaScript) code is to dynamically load modules (since
|
||||
WebAssembly [doesn't support JIT
|
||||
yet](https://webassembly.org/docs/future-features/#platform-independent-just-in-time-jit-compilation)),
|
||||
and the I/O primitives to read and write a character to a screen.
|
||||
|
||||
Parts of the implementation were influenced by
|
||||
|
|
Loading…
Reference in a new issue