jslinux/index.html
2016-07-29 10:06:04 +08:00

50 lines
1.5 KiB
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!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()">
<h1>JSLinux- Javascript PC Emulator running Linux</h1>
<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">&copy; 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>
<p>支持 JSLinux 发扬光大编程万岁Linux+JSHappy Coding</p>
</body>
</html>