From b3bf91c3e8abb7aa6ae0993b2a0c4c5d2696205a Mon Sep 17 00:00:00 2001 From: alexkar598 <25136265+alexkar598@users.noreply.github.com> Date: Fri, 28 Jun 2024 16:24:33 -0400 Subject: [PATCH] Disables unused vm feature --- src/vm/emulator.worker.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/vm/emulator.worker.ts b/src/vm/emulator.worker.ts index f401c47..e0f951a 100644 --- a/src/vm/emulator.worker.ts +++ b/src/vm/emulator.worker.ts @@ -60,7 +60,7 @@ const emulator = new V86({ //Emulator binaries wasm_path: 'lib/v86.wasm', //Hell is this? - acpi: true, + acpi: false, //Log level, debugging? log_level: 0, @@ -73,9 +73,9 @@ const emulator = new V86({ //Skips boot menu delay on boch BIOS apparently fastboot: true, //From my understanding, these control serial terminals - uart1: true, //Terminal - uart2: true, //Screen - uart3: true, //Controller + uart1: false, //Terminal + uart2: false, //Screen + uart3: false, //Controller //Used for weird ass automatic kernel image loading cmdline: null, //Presumably saves the mac address in the state