-
Notifications
You must be signed in to change notification settings - Fork 146
/
index.html
47 lines (44 loc) · 1.33 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html>
<head>
<title>Javascript PC Emulator</title>
<style>
.term {
font-family: courier,fixed,swiss,monospace,sans-serif;
font-size: 14px;
color: #f0f0f0;
background: #000000;
}
.termReverse {
color: #000000;
background: #00ff00;
}
#note {
font-size: 12px;
}
#copyright {
font-size: 10px;
}
#clipboard {
font-size: 12px;
}
</style>
</head>
<body onload="load_binaries()">
<table border="0">
<tr valign="top"><td>
<script type="text/javascript" src="term.js"></script>
<script type="text/javascript" src="cpux86-ta.js"></script>
<script type="text/javascript" src="Serial.js"></script>
<script type="text/javascript" src="PIT.js"></script>
<script type="text/javascript" src="PIC.js"></script>
<script type="text/javascript" src="CMOS.js"></script>
<script type="text/javascript" src="KBD.js"></script>
<script type="text/javascript" src="clipboard.js"></script>
<script type="text/javascript" src="PCEmulator.js"></script>
<script type="text/javascript" src="jslinux.js"></script>
<div id="copyright">© 2011 Fabrice Bellard - <a href="news.html">News</a> - <a href="faq.html">FAQ</a> - <a href="tech.html">Technical notes</a></div>
<td><input type="button" value="Clear clipboard" onclick="clear_clipboard();"><br><textarea row="4" cols="16" id="text_clipboard"></textarea>
</table>
</body>
</html>