You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
723 B
30 lines
723 B
<!doctype html>
|
|
<title>LuPI Web</title>
|
|
|
|
<script src="libv86.js"></script>
|
|
<script>
|
|
"use strict";
|
|
window.onload = function()
|
|
{
|
|
var emulator = window.emulator = new V86Starter({
|
|
memory_size: 64 * 1024 * 1024,
|
|
vga_memory_size: 8 * 1024 * 1024,
|
|
screen_container: document.getElementById("screen_container"),
|
|
bios: {
|
|
url: "seabios.bin",
|
|
},
|
|
vga_bios: {
|
|
url: "bios/vgabios.bin",
|
|
},
|
|
cdrom: {
|
|
url: "lupi.iso",
|
|
},
|
|
autostart: true,
|
|
});
|
|
}
|
|
</script>
|
|
|
|
<div id="screen_container">
|
|
<div style="white-space: pre; font: 14px monospace; line-height: 14px"></div>
|
|
<canvas style="display: none"></canvas>
|
|
</div>
|