mirror of
https://github.com/jasonm76/GSjs.git
synced 2024-12-26 02:30:47 +00:00
24 lines
621 B
HTML
24 lines
621 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
|
|
<title>JavaScript 65C02 CPU Emulator</title>
|
|
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
|
|
</head>
|
|
<body>
|
|
|
|
<div align="center" id="screen"></div>
|
|
|
|
<h3>Check the console for the cool output!</h3>
|
|
<div id="status">LOADING</div>
|
|
<h4>Output:</h4>
|
|
<div id="output"></div>
|
|
<script src="resources.js"></script>
|
|
<script src="cpu.js"></script>
|
|
<script src="monitor.js"></script>
|
|
<script src="memory.js"></script>
|
|
<script src="disassembler.js"></script>
|
|
<script src="main.js"></script>
|
|
</body>
|
|
</html>
|