forked from bfirsh/jsnes
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
132 lines (122 loc) · 4.85 KB
/
index.html
File metadata and controls
132 lines (122 loc) · 4.85 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>JSNES: A JavaScript NES emulator</title>
</head>
<body>
<h1>JSNES</h1>
<div id="emulator"></div>
<h2>Controls</h2>
<table id="controls">
<tr>
<th>Button</th>
<th>Player 1</th>
<th>Player 2</th>
<th>Gamepad</th>
</tr>
<tr>
<td>Left</td>
<td>Left</td>
<td>Num-4</td>
<td>D-pad Left</td>
<tr>
<td>Right</td>
<td>Right</td>
<td>Num-6</td>
<td>D-pad Right</td>
</tr>
<tr>
<td>Up</td>
<td>Up</td>
<td>Num-8</td>
<td>D-pad Up</td>
</tr>
<tr>
<td>Down</td>
<td>Down</td>
<td>Num-2</td>
<td>D-pad Down</td>
</tr>
<tr>
<td>A</td>
<td>X</td>
<td>Num-7</td>
<td>Button 1 (usually "A")</td>
</tr>
<tr>
<td>B</td>
<td>Z/Y</td>
<td>Num-9</td>
<td>Button 2 (usually "B")</td>
</tr>
<tr>
<td>Start</td>
<td>Enter</td>
<td>Num-1</td>
<td>Start</td>
</tr>
<tr>
<td>Select</td>
<td>Ctrl</td>
<td>Num-3</td>
<td>Select (sometimes "back")</td>
</tr>
</table>
<p>Note: The gamepad API is currently experimental, Firefox and Chrome
currently support it.</p>
<p>In Firefox some controllers are improperly mapped.
Try using Chrome if you experience issues.</p>
<script src="lib/jquery-1.4.2.min.js" type="text/javascript" charset="utf-8"></script>
<script src="lib/dynamicaudio-min.js" type="text/javascript" charset="utf-8"></script>
<script src="source/nes.js" type="text/javascript" charset="utf-8"></script>
<script src="source/utils.js" type="text/javascript" charset="utf-8"></script>
<script src="source/cpu.js" type="text/javascript" charset="utf-8"></script>
<script src="source/keyboard.js" type="text/javascript" charset="utf-8"></script>
<script src="source/gamepad_keyboard.js" type="text/javascript" charset="utf-8"></script>
<script src="lib/gamepad.js" type="text/javascript" charset="utf-8"></script>
<script src="source/mappers.js" type="text/javascript" charset="utf-8"></script>
<script src="source/papu.js" type="text/javascript" charset="utf-8"></script>
<script src="source/ppu.js" type="text/javascript" charset="utf-8"></script>
<script src="source/rom.js" type="text/javascript" charset="utf-8"></script>
<script src="source/ui.js" type="text/javascript" charset="utf-8"></script>
<script type="text/javascript" charset="utf-8">
var nes;
$(function() {
nes = new JSNES({
'ui': $('#emulator').JSNESUI({
"Homebrew": [
['Concentration Room', 'roms/croom/croom.nes'],
['LJ65', 'roms/lj65/lj65.nes'],
],
"Working": [
['Bubble Bobble', 'local-roms/Bubble Bobble (U).nes'],
['Contra', 'local-roms/Contra (U) [!].nes'],
['Donkey Kong', 'local-roms/Donkey Kong (JU).nes'],
['Dr. Mario', 'local-roms/Dr. Mario (JU).nes'],
['Golf', 'local-roms/Golf (JU).nes'],
['The Legend of Zelda', 'local-roms/Legend of Zelda, The (U) (PRG1).nes'],
['Lemmings', 'local-roms/Lemmings (U).nes'],
['Lifeforce', 'local-roms/Lifeforce (U).nes'],
['Mario Bros.', 'local-roms/Mario Bros. (JU) [!].nes'],
['Mega Man', 'local-roms/Mega Man (U).nes'],
['Pac-Man', 'local-roms/Pac-Man (U) [!].nes'],
['Super Mario Bros.', 'local-roms/Super Mario Bros. (JU) (PRG0) [!].nes'],
['Tennis', 'local-roms/Tennis (JU) [!].nes'],
['Tetris', 'local-roms/Tetris (U) [!].nes'],
['Tetris 2', 'local-roms/Tetris 2 (U) [!].nes'],
['Zelda II - The Adventure of Link', 'local-roms/Zelda II - The Adventure of Link (U).nes']
],
"Nearly Working": [
['Duck Hunt', 'local-roms/Duck Hunt (JUE) [!].nes'],
['Super Mario Bros. 3', 'local-roms/Super Mario Bros. 3 (U) (PRG1) [!].nes']
]
})
});
});
</script>
<!--[if IE]>
<script type="text/vbscript" src="source/jsnes-ie-hacks.vbscript"></script>
<![endif]-->
</body>
</html>