SOURCE

console 命令行工具 X clear

                    
>
console
<!doctype html>
<title>基本模拟器</title><!-- 不是 BASIC! -->

<script src="../build/libv86.js"></script>
<script>
"use strict";

window.onload = function() {
    var emulator = window.emulator = new V86({
        wasm_path: "../build/v86.wasm",
        memory_size: 32 * 1024 * 1024,
        vga_memory_size: 2 * 1024 * 1024,
        screen_container: document.getElementById("screen_container"),
        bios: {
            url: "../bios/seabios.bin",
        },
        vga_bios: {
            url: "../bios/vgabios.bin",
        },
        cdrom: {
            url: "../images/linux.iso",
        },
        autostart: true,
    });
}
</script>

<!-- 浏览器中定义的 ScreenAdapter 的最小结构 -->
<div id="screen_container">
    <div style="white-space: pre; font: 14px monospace; line-height: 14px"></div>
    <canvas style="display: none"></canvas>
</div>

<!-- ############################################################################### -->

<!-- two_instances.html -->
<!doctype html>
<title>两个模拟器</title>

<script src="../build/libv86.js"></script>
<script>
"use strict";

window.onload = function() {
    var container1 = document.getElementById("screen_container1");
    var container2 = document.getElementById("screen_container2");

    var emulator1 = new V86({
        wasm_path: "../build/v86.wasm",
        screen_container: container1,
        bios: {
            url: "../bios/seabios.bin",
        },
        vga_bios: {
            url: "../bios/vgabios.bin",
        },
        cdrom: {
            url: "../images/linux.iso",
        },
        autostart: true,
    });

    var emulator2 = new V86({
        wasm_path: "../build/v86.wasm",
        screen_container: container2,
        bios: {
            url: "../bios/seabios.bin",
        },
        vga_bios: {
            url: "../bios/vgabios.bin",
        },
        cdrom: {
            url: "../images/linux.iso",
        },
        autostart: true,
    });

    emulator2.keyboard_set_status(false);

    container1.addEventListener("mousedown", function(e) {
        container1.style.borderColor = "yellow";
        container2.style.borderColor = "black";

        emulator1.keyboard_set_status(true);
        emulator2.keyboard_set_status(false);
    }, false);

    container2.addEventListener("mousedown", function(e) {
        container1.style.borderColor = "black";
        container2.style.borderColor = "yellow";

        emulator1.keyboard_set_status(false);
        emulator2.keyboard_set_status(true);
    }, false);

    emulator1.add_listener("serial0-output-byte", function(byte) {
        var char = String.fromCharCode(byte);
        emulator2.serial0_send(char);
    });
    emulator1.add_listener("net0-send", function(data) {
        emulator2.bus.send("net0-receive", data);
    });
    emulator2.add_listener("net0-send", function(data) {
        emulator1.bus.send("net0-receive", data);
    });
};
</script>
点击屏幕以控制它。<hr>
<div id="screen_container1" style="float: left; margin: 10px; border: 3px solid yellow;">
    <div style="white-space: pre; font: 14px monospace; line-height: 14px"></div>
    <canvas style="display: none"></canvas>
</div>
<div id="screen_container2" style="float: left; margin: 10px; border: 3px solid black;">
    <div style="white-space: pre; font: 14px monospace; line-height: 14px"></div>
    <canvas style="display: none"></canvas>
</div>