-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (51 loc) · 1.13 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
52
53
54
55
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>NES Lisp MML</title>
</head>
<body>
<div class='row'>
<div class='column'>
<div id="app"></div>
<h4>Eval output</h4>
<div id="out"></div>
<div id="results"></div>
<div id="doc"></div>
<div id='debug'></div>
</div>
<div class='column'>
<canvas id="oscview2"></canvas>
<strong>APU Registers</strong>
<pre id="memory">4000:
4004:
4008:
400C:
4010:
9000:
A000:
B000:</pre>
<strong>DPCM samples</strong>
<div id= "samples"></div>
</div>
</div>
<div class='row'>
<div class='column'>
<span id="keymap"></span>
<p>
<strong>Import NSF</strong>
<input id="rom" type="file" accept=".nsf">
<br>
<strong>Import sample</strong>
<input id="sample" type="file" accept=".dmc" multiple>
</div>
</div>
<main>
</main>
<button id="pause">Pause</button>
<button id="runframe">Run frame</button>
<script type="module" src="/main.js"></script>
</body>
</html>