Skip to content

Commit b3bf91c

Browse files
committed
Disables unused vm feature
1 parent a3ea001 commit b3bf91c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/vm/emulator.worker.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ const emulator = new V86({
6060
//Emulator binaries
6161
wasm_path: 'lib/v86.wasm',
6262
//Hell is this?
63-
acpi: true,
63+
acpi: false,
6464

6565
//Log level, debugging?
6666
log_level: 0,
@@ -73,9 +73,9 @@ const emulator = new V86({
7373
//Skips boot menu delay on boch BIOS apparently
7474
fastboot: true,
7575
//From my understanding, these control serial terminals
76-
uart1: true, //Terminal
77-
uart2: true, //Screen
78-
uart3: true, //Controller
76+
uart1: false, //Terminal
77+
uart2: false, //Screen
78+
uart3: false, //Controller
7979
//Used for weird ass automatic kernel image loading
8080
cmdline: null,
8181
//Presumably saves the mac address in the state

0 commit comments

Comments
 (0)