Sun 20 Oct 15:08:44 CEST 2024
This commit is contained in:
parent
d54b9f51db
commit
fb91940f20
32
webv86/web/README
Normal file
32
webv86/web/README
Normal file
|
@ -0,0 +1,32 @@
|
|||
# V86 - Basekernel
|
||||
|
||||
This distribution starts the basekernel.iso in the Web browser with an virtual HDD (buffer).
|
||||
|
||||
# browser vm86.html
|
||||
|
||||
> automount
|
||||
|
||||
> list
|
||||
|
||||
...
|
||||
|
||||
# VM Setup
|
||||
|
||||
```
|
||||
var emulator = new V86Starter({
|
||||
wasm_path : "v86.wasm",
|
||||
memory_size : 64 * 1024 * 1024, // 64 MB memory ought to be enough for anyone
|
||||
vga_memory_size : 2 * 1024 * 1024,
|
||||
screen_container : screen_container,
|
||||
bios : {url: "seabios.bin"},
|
||||
vga_bios : {url: "vgabios.bin"},
|
||||
cdrom : {url: "basekernel.iso"},
|
||||
hda : {
|
||||
buffer: new Uint8Array(16*1024*1024).buffer
|
||||
},
|
||||
boot_order : 0x123,
|
||||
autostart : true
|
||||
})
|
||||
```
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user