games/other/alpine/index.js
2023-09-06 14:06:02 +02:00

21 lines
611 B
JavaScript

"use strict";
window.onload = function()
{
var emulator = window.emulator = new V86Starter({
wasm_path: "v86.wasm",
memory_size: 304 * 1024 * 1024,
vga_memory_size: 16 * 1024 * 1024,
screen_container: document.getElementById("screen_container"),
bios: {
url: "https://cdn-mu-ten.vercel.app/v86/seabios.bin",
},
vga_bios: {
url: "https://cdn-mu-ten.vercel.app/v86/vgabios.bin",
},
cdrom: {
url: "https://data.boof.eu.org/alpine-standard-3.18.3-x86.iso",
},
autostart: true,
});
}