+ added the memory.init and data.drop instructions

This commit is contained in:
Nikolay Nikolov 2022-05-27 23:38:49 +03:00
parent dbba2d2746
commit e2eadc51a3
3 changed files with 3 additions and 3 deletions

View File

@ -85,7 +85,7 @@ uses
// additional memory
a_memory_grow, a_memory_size,
// bulk memory operations
a_memory_copy, a_memory_fill,
a_memory_copy, a_memory_fill, a_memory_init, a_data_drop,
// exceptions
a_try,a_catch,a_catch_all,a_delegate,a_throw,a_rethrow,a_end_try,
// atomic memory accesses - load/store

View File

@ -84,7 +84,7 @@ interface
// additional memory
'memory.grow 0', 'memory.size 0',
// bulk memory operations
'memory.copy 0,0', 'memory.fill 0',
'memory.copy 0,0', 'memory.fill 0', 'memory.init', 'data.drop',
// exceptions
'try','catch','catch_all','delegate','throw','rethrow','end_try',
// atomic memory accesses - load/store

View File

@ -68,7 +68,7 @@
// additional memory
'grow_memory', 'current_memory',
// bulk memory operations
'memory.copy', 'memory.fill',
'memory.copy', 'memory.fill', 'memory.init', 'data.drop',
// exceptions
'try','catch','catch_all','delegate','throw','rethrow','end',
// atomic memory accesses - load/store