dotnet-webassembly
dotnet-webassembly copied to clipboard
How Can I use the memory?
How Can I use the memory?
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.