forked from skilldrick/easy6502
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefault.html
60 lines (54 loc) · 2.29 KB
/
default.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
56
57
58
59
60
<!doctype html>
<html>
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-T24VL5516K"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-T24VL5516K');
</script>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<meta property="twitter:account_id" content="17736965">
<title>Easy 6502 by skilldrick</title>
<link rel="stylesheet" href="stylesheets/styles.css">
<link rel="stylesheet" href="simulator/style.css">
<link rel="stylesheet" href="stylesheets/pygment_trac.css">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<div class="wrapper">
<header>
<h1>Easy 6502</h1>
<p><em>by</em> <a href="https://twitter.com/skilldrick">Nick Morgan</a>, licensed under <a href="https://creativecommons.org/licenses/by/4.0/">CC BY 4.0</a></p>
<p class="view"><a href="https://github.com/skilldrick/easy6502/tree/gh-pages">Fork me on GitHub</a></p>
<ul>
<li><a href="#intro">Introduction</a></li>
<li><a href="#first-program">Our first program</a></li>
<li><a href="#registers">Registers and flags</a></li>
<li><a href="#instructions">Instructions</a></li>
<li><a href="#branching">Branching</a></li>
<li><a href="#addressing">Addressing modes</a></li>
<li><a href="#stack">The stack</a></li>
<li><a href="#jumping">Jumping</a></li>
<li><a href="#snake">Creating a game</a></li>
</ul>
</header>
<section>
{{ content }}
</section>
<footer>
<p><small>Hosted on GitHub Pages — Theme by <a href="https://github.com/orderedlist">orderedlist</a></small></p>
</footer>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script src="simulator/es5-shim.js"></script>
<script src="simulator/assembler.js"></script>
<script src="javascripts/scale.fix.js"></script>
</body>
</html>