Skip to content

Commit

Permalink
Disables unused vm feature
Browse files Browse the repository at this point in the history
  • Loading branch information
alexkar598 committed Jun 28, 2024
1 parent a3ea001 commit b3bf91c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/vm/emulator.worker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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
Expand Down

0 comments on commit b3bf91c

Please sign in to comment.