GitHub - nasa/spacewasm: A flight-compliant WebAssembly interpreter for safety-critical execution
SpaceWASM is an implementation of the WASM 1.0
specification meant to interpret WASM binary on-board spacecraft. This software comes with two major components:
Decoder/Validator:
Reads the WASM binary in chunks and decodes it to an executable form. The decoder will use a fixed
amount of memory and can be measured per-WASM binary using the spacewasm-check executable on the ground.
WebAssembly is validated during the decoding process and does not require another pass of the bytecode.
Interpreter:
...
Read more at github.com