From 0608e2c476c6a745ae5ab0aa046040d5fd4d6d0a Mon Sep 17 00:00:00 2001 From: Camden Dixie O'Brien Date: Tue, 24 Feb 2026 15:53:17 +0000 Subject: [PATCH] Add 'System halt' log message when WASM exits --- boot.js | 1 + 1 file changed, 1 insertion(+) diff --git a/boot.js b/boot.js index d757741..263b8f9 100644 --- a/boot.js +++ b/boot.js @@ -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'); };