puter/incubator/x86emu/www/index.html
2024-04-11 20:52:47 +03:00

21 lines
548 B
HTML

<!doctype html>
<html>
<head>
<script src="./third-party/libv86.js"></script>
<link rel="stylesheet" href="./third-party/xterm.css" />
<script src="./third-party/xterm.js"></script>
<script type="module" defer>
"use strict";
import InstanceManager from "./js/InstanceManager.mjs"
document.addEventListener("DOMContentLoaded", () => {
window.manager = new InstanceManager({spawnRoot: document.body, term: true});
window.manager.createInstance({spawnRoot: document.body, term: true})
});
</script>
</head>
<body>
</body>
</html>