You've already forked retrowin32
mirror of
https://github.com/encounter/retrowin32.git
synced 2026-03-30 11:35:51 -07:00
36 lines
860 B
HTML
36 lines
860 B
HTML
<!doctype html>
|
|
<title>retrowin32</title>
|
|
<link rel='stylesheet' href='win2k.css'>
|
|
<style>
|
|
body {
|
|
background: #3a6ea5;
|
|
}
|
|
|
|
header {
|
|
padding: 8px;
|
|
}
|
|
|
|
.stdout {
|
|
width: 80ex;
|
|
padding: 1ex;
|
|
color: grey;
|
|
background: black;
|
|
}
|
|
</style>
|
|
|
|
<body>
|
|
<header class='panel'>
|
|
<a style='font-weight: bold; color: inherit' href='https://evmar.github.io/retrowin32/'>retrowin32</a>: a
|
|
windows emulator
|
|
| <button onclick='location.reload()'>reload page</button> if it crashes
|
|
| <button
|
|
onclick='window.location.pathname = window.location.pathname.replace("/run.html", "/debugger.html")'>view in
|
|
debugger</a>
|
|
</header>
|
|
<main id='main'></main>
|
|
</body>
|
|
|
|
<script type='module'>
|
|
import { runMain } from './bundle.js';
|
|
runMain();
|
|
</script> |