We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a3ea001 commit b3bf91cCopy full SHA for b3bf91c
src/vm/emulator.worker.ts
@@ -60,7 +60,7 @@ const emulator = new V86({
60
//Emulator binaries
61
wasm_path: 'lib/v86.wasm',
62
//Hell is this?
63
- acpi: true,
+ acpi: false,
64
65
//Log level, debugging?
66
log_level: 0,
@@ -73,9 +73,9 @@ const emulator = new V86({
73
//Skips boot menu delay on boch BIOS apparently
74
fastboot: true,
75
//From my understanding, these control serial terminals
76
- uart1: true, //Terminal
77
- uart2: true, //Screen
78
- uart3: true, //Controller
+ uart1: false, //Terminal
+ uart2: false, //Screen
+ uart3: false, //Controller
79
//Used for weird ass automatic kernel image loading
80
cmdline: null,
81
//Presumably saves the mac address in the state
0 commit comments