-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
51 lines (42 loc) · 1.11 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!doctype html>
<html>
<head>
<title>jsGBC Core</title>
<meta charset="utf-8" />
<link rel="stylesheet" href="./demo/index.css" />
</head>
<body>
<div class="loading">
<h1>Loading...</h1>
</div>
<p>Click
<span class="hidden-file rom-select-text">
HERE
<input type="file" class="gb-boot-rom-select" accept=".bin,.zip" />
</span> to select a GB BOOT ROM
</p>
<p>Click
<span class="hidden-file rom-select-text">
HERE
<input type="file" class="gbc-boot-rom-select" accept=".bin,.zip" />
</span> to select a GBC BOOT ROM
</p>
<p>Click
<span class="hidden-file rom-select-text">
HERE
<input type="file" class="rom-select" accept=".gb,.gbc,.zip" />
</span> to select a ROM
</p>
<canvas class="lcd pixelated"></canvas>
<div>
<span class="download-battery-file-text">Download Battery File</span>
</div>
<div>
<span class="hidden-file upload-battery-file-text">
Upload Battery File
<input type="file" class="upload-battery-file" accept=".sav" />
</span>
</div>
<script src="jsgbc-core.js"></script>
</body>
</html>