dotnet-webassembly icon indicating copy to clipboard operation
dotnet-webassembly copied to clipboard

How Can I use the memory?

Open furesoft opened this issue 4 years ago • 1 comments

How Can I use the memory?

furesoft avatar Oct 31 '21 14:10 furesoft

There are a number of load/store functions to read and write data from an address. They have names like i32.load in the WASM text format, which are mapped to the name Int32Load in this project. All of the WASM 1.0 memory features are implemented. Details are documented in the official WASM specification, and their may be other tutorials out there.

RyanLamansky avatar Nov 01 '21 23:11 RyanLamansky