puter/incubator/x86emu/www/index.html
2024-04-11 21:38:36 +03:00

21 lines
541 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", () => {
const manager = new InstanceManager({spawnRoot: document.body, term: true});
manager.createInstance({spawnRoot: document.body, term: true});
});
</script>
</head>
<body>
</body>
</html>