@@ -26,13 +26,13 @@ A WebAssembly interpreter written in C.
2626| Feature | cmake config | Notes |
2727| ---------------------- | -------------------------------------- | -------- |
2828| [ WebAssembly] | | ` 2.0 (Draft 2022-06-27) ` |
29- | ` mutable-global ` | | Always enabled|
30- | ` nontrapping-float-to-int-conversions ` | | Always enabled|
31- | ` sign-extension-ops ` | | Always enabled|
32- | ` multi-value ` | | Always enabled|
33- | ` reference-types ` | | Always enabled|
34- | ` bulk-memory-operations ` | | Always enabled|
35- | ` simd ` | ` TOYWASM_ENABLE_WASM_SIMD ` | |
29+ | [ mutable-global] | | Always enabled|
30+ | [ nontrapping-float-to-int-conversions] | | Always enabled|
31+ | [ sign-extension-ops] | | Always enabled|
32+ | [ multi-value] | | Always enabled|
33+ | [ reference-types] | | Always enabled|
34+ | [ bulk-memory-operations] | | Always enabled|
35+ | [ simd] | ` TOYWASM_ENABLE_WASM_SIMD ` | |
3636| [ extended-const] | ` TOYWASM_ENABLE_WASM_EXTENDED_CONST ` | |
3737| [ exception-handling] | ` TOYWASM_ENABLE_WASM_EXCEPTION_HANDLING ` | See [ the top comment in insn_impl_eh.h] |
3838| [ multi-memory] | ` TOYWASM_ENABLE_WASM_MULTI_MEMORY ` | |
@@ -45,6 +45,13 @@ A WebAssembly interpreter written in C.
4545| [ littlefs for WASI] | ` TOYWASM_ENABLE_WASI_LITTLEFS ` | |
4646
4747[ WebAssembly ] : https://github.com/WebAssembly/spec
48+ [ mutable-global ] : https://github.com/WebAssembly/mutable-global
49+ [ nontrapping-float-to-int-conversions ] : https://github.com/WebAssembly/nontrapping-float-to-int-conversions
50+ [ sign-extension-ops ] : https://github.com/WebAssembly/sign-extension-ops
51+ [ multi-value ] : https://github.com/WebAssembly/multi-value
52+ [ reference-types ] : https://github.com/WebAssembly/reference-types
53+ [ bulk-memory-operations ] : https://github.com/WebAssembly/bulk-memory-operations
54+ [ simd ] : https://github.com/WebAssembly/simd
4855[ extended-const ] : https://github.com/WebAssembly/extended-const
4956[ exception-handling ] : https://github.com/WebAssembly/exception-handling
5057[ multi-memory ] : https://github.com/WebAssembly/multi-memory
0 commit comments