We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8fd3df7 commit dd06a1dCopy full SHA for dd06a1d
runtime.js
@@ -34,7 +34,7 @@ Promise.all([
34
console.log(`Heap pointer: ${clsHeapPointer}, ${closureMemoryTotal / CLS_SIZE} closures ⨉ ${CLS_SIZE} bytes`);
35
36
const heapMem = new Uint8Array(result.instance.exports.mem.buffer, workingMemoryOffset + STACK_SIZE, closureMemoryTotal);
37
- console.log(`Program Memory: ${programMem}\n`);
+ console.log(`Program Memory: ${([...programMem]).map(command => ['I', 'K', 'S', 'A'][command])}\n`);
38
39
const stackClss = [];
40
0 commit comments