-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (37 loc) · 1.35 KB
/
index.html
File metadata and controls
37 lines (37 loc) · 1.35 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
<html>
<head>
<title>snes</title>
<link rel="icon" type="image/ico" href="./favicon.ico" />
<link rel="stylesheet" type="text/css" href="./index.css" />
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.1/jquery.min.js"></script>
</head>
<body>
<table>
<tr>
<td>
<ul>
<li><a href="http://wiki.superfamicom.org/snes/show/HomePage">snes development home page</a></li>
<li><a href="./65816assemblermanual.html">65816 Assembler Manual</a></li>
<li><a href="http://wiki.superfamicom.org/snes/show/65816+Reference">65816 Reference</a></li>
<li><a href="./65816primer.html">65816 primer</a></li>
<li><a href="./65816syntax.html">65816 syntax</a></li>
<li><a href="http://wiki.superfamicom.org/snes/show/Registers">registers</a></li>
<li><a href="http://wiki.superfamicom.org/snes/show/Jay%27s+ASM+Tutorial">jay's asm tutorial</a></li>
<li><a href="http://en.wikibooks.org/wiki/Super_NES_Programming">wikibooks</a></li>
<li><a href="./yoshi.html">yoshi docs</a></li>
<li><a href="./wla_readme.html">wla readme</a></li>
</ul>
</td>
<td>
tools
<ul>
<li><a href="./hextobinary.html">hex to binary</a>
</ul>
</td>
</tr>
</table>
<script type="text/javascript">
$("a").attr("target", "_blank");
</script>
</body>
</html>