mirror of
https://github.com/pskupinski/65816.js.git
synced 2024-11-15 07:06:49 +00:00
22 lines
668 B
HTML
22 lines
668 B
HTML
|
<html>
|
||
|
<head>
|
||
|
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.0/jquery.min.js"></script>
|
||
|
<link rel="stylesheet" href="qunit.css" type="text/css" media="screen" />
|
||
|
<script type="text/javascript" src="qunit.js"></script>
|
||
|
<script type="text/javascript" src="tests.js"></script>
|
||
|
<script type="text/javascript" src="../cpu.js"></script>
|
||
|
<script type="text/javascript">
|
||
|
$(document).ready(function() {
|
||
|
run_tests();
|
||
|
});
|
||
|
</script>
|
||
|
</head>
|
||
|
<body>
|
||
|
<h1 id="qunit-header">JavaScript-65816</h1>
|
||
|
<h2 id="qunit-banner"></h2>
|
||
|
<h2 id="qunit-userAgent"></h2>
|
||
|
<ol id="qunit-tests">
|
||
|
</ol>
|
||
|
</body>
|
||
|
</html>
|