README tweak

This commit is contained in:
Remko Tronçon 2018-06-09 09:07:08 +02:00
parent 537f2b2b98
commit 5b920e7620

View file

@ -59,9 +59,10 @@ macros for convenience.
The interpreter runs a loop that processes commands, and switches to and from
compiler mode.
Contrary to some other Forth systems, this system doesn't use a strict threading system
Contrary to some other Forth systems, this system doesn't use direct threading
for executing code. WebAssembly doesn't allow unstructured jumps, let alone dynamic jumps.
Instead, each word is implemented as a single WebAssembly function, and the system uses
Instead, WAForth uses subroutine threading, where each word is implemented as a single
WebAssembly function, and the system uses
calls and indirect calls (see below) to execute words.