Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion n-body/asconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
"options": {
"runtime": "stub",
"initialMemory": 17,
"noExportMemory": true,
"sourceMap": true
},
"targets": {
Expand Down
Binary file modified n-body/build/as_nbody.wasm
Binary file not shown.
3 changes: 1 addition & 2 deletions n-body/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,7 @@ <h1>
.then(response => response.arrayBuffer())
.then(buffer => WebAssembly.instantiate(buffer, {
env: {
memory: new WebAssembly.Memory({ initial: 1 }),
abort: function() { throw Error("abort called"); }
abort() { throw Error("abort called"); }
}
}))
.then(module => {
Expand Down