v86/examples/basic.html

34 lines
901 B
HTML
Raw Permalink Normal View History

<!doctype html>
2014-07-23 00:15:59 +02:00
<title>Basic Emulator</title><!-- not BASIC! -->
2015-09-12 00:35:44 +02:00
<script src="../build/libv86.js"></script>
<script>
2015-01-10 02:15:13 +01:00
"use strict";
window.onload = function()
{
2015-09-12 00:35:44 +02:00
var emulator = window.emulator = new V86Starter({
2021-01-01 02:14:30 +01:00
wasm_path: "../build/v86.wasm",
memory_size: 32 * 1024 * 1024,
vga_memory_size: 2 * 1024 * 1024,
screen_container: document.getElementById("screen_container"),
bios: {
2015-09-12 00:35:44 +02:00
url: "../bios/seabios.bin",
},
vga_bios: {
2015-09-12 00:35:44 +02:00
url: "../bios/vgabios.bin",
},
cdrom: {
2015-09-12 00:35:44 +02:00
url: "../images/linux.iso",
},
autostart: true,
});
}
</script>
<!-- A minimal structure for the ScreenAdapter defined in browser/screen.js -->
<div id="screen_container">
2014-11-01 15:03:57 +01:00
<div style="white-space: pre; font: 14px monospace; line-height: 14px"></div>
<canvas style="display: none"></canvas>
</div>