Rename memory instructions; Rework constant handling

This commit is contained in:
dcodeIO
2018-07-18 23:49:32 +02:00
parent 34e8facfdc
commit a1b75b69b7
170 changed files with 26392 additions and 5185 deletions

View File

@ -7,9 +7,10 @@
(import "foo" "var" (global $external/var_ i32))
(global $HEAP_BASE i32 (i32.const 8))
(memory $0 0)
(export "foo" (func $external/foo))
(export "memory" (memory $0))
(export "foo.bar" (func $external/foo.bar))
(export "foo" (func $external/foo))
(export "two" (func $external/two))
(export "three" (func $external/three))
(export "memory" (memory $0))
(export "var_" (global $external/var_))
)