Wish/index.html
2014-05-23 23:19:39 +02:00

46 lines
1.1 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<style>
table {
border: 1px solid #fff;
background-color: #000;
border-collapse: seperate;
border-spacing: 0px 0px;
}
tr {
}
td {
min-width: 8px;
max-width: 8px;
overflow: visible;
text-align: center;
height: 18px;
color: #fff;
font-family: "Courier New", Courier, Monospace;
border: 1px solid #000;
}
#input {
z-index: -10;
position: absolute;
top: 10px;
}
#output {
z-index: 1000;
}
</style>
<script src="Emulator.js"></script>
<script src="KeyCodes.js"></script>
<script src="BIOS.js"></script>
<script src="main.js"></script>
</head>
<body onload="main()">
<div id="output"></div>
<input type="button" onclick="powerOn()" value="Power Button" />
<input type="button" onclick="window.clearInterval(Emulator.mainTickId)" value="clear system timer" />
<a href="https://github.com/overflowerror/Wish">GitHub repo</a>
<form id="form" name="form" onsubmit="return false;">
<input type="text" name="input" id="input" />
</form>
</body>
</html>