forked from Two9A/jsGB
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
27 lines (27 loc) · 803 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="css/style.css">
<title>jsGB - Gameboy Emulator</title>
</head>
<body>
<div id="out">
<canvas id="screen" width="160" height="144" />
</div>
<div class="subcanv">
<ul class="ops">
<li id="op_reset">Reset</li>
<li id="op_run">Run</li>
</ul>
</div><br />
<input type="file" id="files" name="files[]" />
<br />
<output id="list"></output>
<script type="text/javascript" src="js/gpu.js"></script>
<script type="text/javascript" src="js/mmu.js"></script>
<script type="text/javascript" src="js/key.js"></script>
<script type="text/javascript" src="js/timer.js"></script>
<script type="text/javascript" src="js/z80.js"></script>
<script type="text/javascript" src="js/main.js"></script>
</body>
</html>