mirror of
https://github.com/DustinBrett/daedalOS.git
synced 2025-12-06 00:20:05 +01:00
18 lines
437 B
TypeScript
18 lines
437 B
TypeScript
export const BOOT_CD_FD_HD = 0x213;
|
|
export const BOOT_FD_CD_HD = 0x231;
|
|
|
|
export const config = {
|
|
autostart: true,
|
|
log_level: 0,
|
|
filesystem: {
|
|
basefs: "/.index/fs.9p.json",
|
|
baseurl: "/",
|
|
},
|
|
network_relay_url: "wss://relay.widgetry.org/",
|
|
wasm_path: "/libs/v86/v86.wasm",
|
|
bios: { url: "/libs/v86/bios/seabios.bin" },
|
|
vga_bios: { url: "/libs/v86/bios/vgabios.bin" },
|
|
};
|
|
|
|
export const libs = ["/libs/v86/libv86.js"];
|