v6502/vm/machine.html

38 lines
1.8 KiB
HTML

<!--
6502 Based Virtual Computer
Copyright (C) 2011 Scott C. Duensing <scott@jaegertech.com>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
-->
<html>
<head>
<script src="https://getfirebug.com/firebug-lite.js" type="text/javascript" language="javascript"></script>
<script src="ConsoleDummy.js" type="text/javascript" language="javascript"></script>
<title>Virtual Computer Test</title>
<script src="computer/ram.js" type="text/javascript" language="javascript"></script>
<script src="computer/cpu6502.js" type="text/javascript" language="javascript"></script>
<script src="computer/textDisplay.js" type="text/javascript" language="javascript"></script>
<script src="computer/keyboard.js" type="text/javascript" language="javascript"></script>
<script src="computer/prng.js" type="text/javascript" language="javascript"></script>
<script src="computer/clock.js" type="text/javascript" language="javascript"></script>
<!--
<script src="software/basic.js" type="text/javascript" language="javascript"></script>
-->
</head>
<body>
<div id="display"></div>
<script src="machine.js" type="text/javascript" language="javascript"></script>
</body>
</html>