-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (22 loc) · 739 Bytes
/
Copy pathindex.html
File metadata and controls
28 lines (22 loc) · 739 Bytes
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
28
<!doctype html>
<html>
<head>
<meta charset="utf8"/>
<title>Chip8 emulator</title>
<link rel="stylesheet" href="./css/styles.css" type="text/css"/>
</head>
<body>
<h1>Chip8 emulator</h1>
<canvas id="canvas">Your browser does not seem to support canvas.</canvas>
<p>
<label for="file">Choose a ROM file on your computer:</label>
<input type="file" id="file"/>
</p>
<footer>by Juchi</footer>
<script type="text/javascript" src="./js/rom.js"></script>
<script type="text/javascript" src="./js/screen.js"></script>
<script type="text/javascript" src="./js/processor.js"></script>
<script type="text/javascript" src="./js/input.js"></script>
<script type="text/javascript" src="./js/main.js"></script>
</body>
</html>