2013-07-20 18:16:12 +00:00
|
|
|
<!DOCTYPE html>
|
2013-07-20 14:09:10 +00:00
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<style>
|
|
|
|
table {
|
|
|
|
border: 1px solid #fff;
|
|
|
|
background-color: #000;
|
|
|
|
border-collapse: collapse;
|
|
|
|
}
|
|
|
|
tr {
|
|
|
|
}
|
|
|
|
td {
|
|
|
|
width: 10px;
|
|
|
|
text-align: center;
|
|
|
|
height: 20px;
|
|
|
|
color: #fff;
|
|
|
|
font-family: "Courier New", Courier, Monospace;
|
|
|
|
border-collapse: collapse;
|
|
|
|
}
|
|
|
|
#input {
|
|
|
|
z-index: -10;
|
|
|
|
position: absolute;
|
|
|
|
top: 10px;
|
|
|
|
}
|
|
|
|
#output {
|
|
|
|
z-index: 1000;
|
|
|
|
}
|
2013-07-20 19:48:45 +00:00
|
|
|
#cursor{
|
|
|
|
width:8px;
|
|
|
|
height:18px;
|
|
|
|
}
|
2013-07-20 14:09:10 +00:00
|
|
|
</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" />
|
2013-07-20 18:43:34 +00:00
|
|
|
<a href="https://github.com/overflowerror/Wish">GitHub repo</a>
|
2013-07-20 14:09:10 +00:00
|
|
|
<form id="form" name="form" onsubmit="return false;">
|
|
|
|
<input type="text" name="input" id="input" />
|
|
|
|
</form>
|
|
|
|
</body>
|
|
|
|
</html>
|