-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (33 loc) · 1.25 KB
/
Copy pathindex.html
File metadata and controls
33 lines (33 loc) · 1.25 KB
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>gbc-emu</title>
</head>
<body>
<div id="wrapper">
<div id="app">
<div id="screens">
<canvas id="tileCanvas" width="512" height="512"></canvas>
<div id="emulator">
<h1>gbc-emu</h1>
<div>
<input type="file" id="romInput" />
<div>
<input type="text" id="addressInput" />
<button id="readAddressButton">Read</button>
</div>
<button id="stepButton">Step</button>
<button id="step1000Button">Step 1000 cycles</button>
<button id="pauseButton">Pause</button>
</div>
<canvas id="screenCanvas" />
</div>
<div id="logs"></div>
</div>
</div>
</div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>