Step through WebAssembly bytecode instruction by instruction. Observe the evaluation stack push/pop cycle and inspect 64KB Linear Memory cell mutations.
Program Preset:
Bytecode Instruction StreamStep 0 of 7
01i32.const 3
Push 3 onto stack
02i32.const 3
Push 3 onto stack
03i32.mul
Pop 3, 3 -> push 9
04i32.const 4
Push 4 onto stack
05i32.const 4
Push 4 onto stack
06i32.mul
Pop 4, 4 -> push 16
07i32.add
Pop 16, 9 -> push 25 (Result)
Virtual Evaluation Stack (LIFO)0 values on stack
Stack Empty — Ready for i32.const
Linear Memory (Page 0: 0x0000 - 0xFFFF)MUTABLE ARRAYBUFFER