mirror of
https://github.com/HeyPuter/puter
synced 2024-11-14 14:03:42 +00:00
feat: v86 9p server support
This commit is contained in:
parent
d449367db5
commit
b145e30a90
5
rust-toolchain.toml
Normal file
5
rust-toolchain.toml
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
[toolchain]
|
||||||
|
channel = "nightly"
|
||||||
|
components = [ "rustc", "rust-std" ]
|
||||||
|
targets = [ "wasm32-unknown-unknown", "i686-unknown-linux-gnu" ]
|
||||||
|
profile = "minimal"
|
@ -287,10 +287,11 @@ window.onload = async function()
|
|||||||
status.phase_progress = UPDATE_ONLY;
|
status.phase_progress = UPDATE_ONLY;
|
||||||
}, 200);
|
}, 200);
|
||||||
|
|
||||||
|
console.log("starting v86")
|
||||||
var emulator = window.emulator = new V86({
|
var emulator = window.emulator = new V86({
|
||||||
wasm_path: PATH_V86 + "/v86.wasm",
|
wasm_path: PATH_V86 + "/v86.wasm",
|
||||||
memory_size: 512 * 1024 * 1024,
|
memory_size: 512 * 1024 * 1024,
|
||||||
|
filesystem: { fs: puter.fs },
|
||||||
vga_memory_size: 2 * 1024 * 1024,
|
vga_memory_size: 2 * 1024 * 1024,
|
||||||
screen_container: document.getElementById("screen_container"),
|
screen_container: document.getElementById("screen_container"),
|
||||||
bios: {
|
bios: {
|
||||||
|
@ -1 +1 @@
|
|||||||
Subproject commit 1afc297f8b61704716c6eb9bfb281d57036bd588
|
Subproject commit e4da3306727b59de0879fa111e8b6e963bcc0c82
|
Loading…
Reference in New Issue
Block a user