-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (37 loc) · 1.44 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
<!doctype html>
<html lang="en">
<head>
<link rel="stylesheet" type="text/css" href="./style.css">
<title>SnesJS</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="author" content="SNES-IDE programmmer">
<link rel="icon" href="./favicon.ico" type="image/x-icon">
<meta charset="utf-8">
<meta name="description" content="A SNES game made with SNES-IDE(it's on github, and it's open-source!)">
</head>
<body>
<input id="ishirom" type="checkbox"> HiROM
<button id="pause">Pause</button>
<button id="reset">Reset</button>
<button id="hardreset">Power cycle Reset</button>
<button id="runframe">Run 1 frame</button><br>
<canvas id="output"></canvas>
<pre id="log"></pre>
<p>
Thanks for <a href="https://github.com/angelo-wf/SnesJS">SnesJs</a>(web door for SNES games), by <a href="https://github.com/angelo-wf/">angelo_wf</a>.<br>
Source on <a href="https://github.com/BrunoRNS/snesjs311">Github</a>.
</p>
<script src="snes/cart.js"></script>
<script src="snes/dsp.js"></script>
<script src="snes/spc.js"></script>
<script src="snes/apu.js"></script>
<script src="snes/pipu.js"></script>
<script src="snes/cpu.js"></script>
<script src="snes/snes.js"></script>
<script src="js/audio.js"></script>
<script src="js/trace.js"></script>
<script src="js/spcp.js"></script>
<script src="./main.js"></script>
</body>
</html>