Add 'System halt' log message when WASM exits

This commit is contained in:
2026-02-24 15:53:17 +00:00
parent d3e2407f3b
commit 0608e2c476

View File

@@ -3,4 +3,5 @@ self.onmessage = async (e) => {
const mod = await WebAssembly.instantiateStreaming(
fetch('wipforth.wasm'), exports)
mod.instance.exports.reset();
console.log('System halt');
};