forked from ericgrandt/chip8-emulator
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
33 lines (32 loc) · 1.01 KB
/
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
28
29
30
31
32
33
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CHIP-8 EMULATOR</title>
<link rel="icon" href="./favicon.ico">
</head>
<body>
<div class="rom-selector">
<span id="loading-text"></span>
<button id="reload">RELOAD</button>
ROM :
<select name="roms" id="roms">
<option value="BLITZ">BLITZ</option>
<option value="BLINKY">BLINKY</option>
<option value="BRICK">BRICK</option>
<option value="MAZE">MAZE</option>
<option value="PICTURE">PICTURE</option>
<option value="TANK">TANK</option>
<option value="SPACE-INVADER">SPACE-INVADER</option>
</select>
</div>
<main>
<div class="console">
<h1>👾 CHIP-8 EMULATOR 👾</h1>
<canvas id="screen"></canvas>
<script src="./src/index.js"></script>
</div>
</main>
</body>
</html>