mirror of
https://github.com/fadden/6502bench.git
synced 2025-08-07 22:25:09 +00:00
Execute scripts
This change applies the substitution scripts on the HTML files, replacing away the jQuery load() calls with the actual file contents, and setting the correct URLs to the prev/next buttons.
This commit is contained in:
@@ -16,29 +16,69 @@
|
||||
|
||||
<div id="masthead">
|
||||
<!-- START: /masthead-incl.html -->
|
||||
<script>$("#masthead").load("/masthead-incl.html");</script>
|
||||
<!--<div class="masthead-title" style="background-image: url('images/screenshot-mainwin.png');">-->
|
||||
<div class="masthead-title">
|
||||
6502bench
|
||||
</div>
|
||||
<!-- END: /masthead-incl.html -->
|
||||
</div>
|
||||
|
||||
<div id="topnav">
|
||||
<!-- START: /topnav-incl.html active:#topnav-sgtutorial -->
|
||||
<script>
|
||||
// Load global topnav content, and mark current page active.
|
||||
$("#topnav").load("/topnav-incl.html", function() {
|
||||
$("#topnav-sgtutorial").addClass("active");
|
||||
});
|
||||
</script>
|
||||
<!-- top navigation bar contents -->
|
||||
<nav>
|
||||
<a id="topnav-home" href="/">HOME</a>
|
||||
<a id="topnav-sgtutorial" class="active" href="/sgtutorial">SourceGen Tutorial</a>
|
||||
<a id="topnav-menuicon" href="javascript:void(0);" class="icon" onclick="toggleSidenav()">
|
||||
<i class="fa fa-bars"></i>
|
||||
</a>
|
||||
</nav>
|
||||
<script>
|
||||
// If page has no sidenav, don't show the sidenav toggle button.
|
||||
if (document.getElementById("sidenav") == undefined) {
|
||||
$("#topnav-menuicon").hide();
|
||||
}
|
||||
|
||||
// Sidenav toggle function.
|
||||
//
|
||||
// Use a jQuery function to toggle the sidenav bar. The initial state
|
||||
// is undefined / inherited, so it will pop in and out as the screen
|
||||
// resizes around the "large" breakpoint.
|
||||
function toggleSidenav() {
|
||||
$("#sidenav").toggle("fast");
|
||||
}
|
||||
</script>
|
||||
<!-- END: /topnav-incl.html -->
|
||||
</div>
|
||||
|
||||
<div id="sidenav">
|
||||
<!-- START: sidenav-incl.html active:#sidenav-about-disasm -->
|
||||
<script>
|
||||
// Load local sidenav content, and mark current page active.
|
||||
$("#sidenav").load("sidenav-incl.html", function() {
|
||||
$("#sidenav-about-disasm").addClass("active");
|
||||
});
|
||||
</script>
|
||||
<!-- side navigation bar contents -->
|
||||
<ul>
|
||||
<li id="sidenav-index"><a href="./">Introduction</a></li>
|
||||
<li id="sidenav-about-disasm" class="active"><a href="about-disasm.html">About Disassembly</a></li>
|
||||
<li id="sidenav-using-sourcegen"><a href="using-sourcegen.html">Using SourceGen</a></li>
|
||||
<ul>
|
||||
<li id="sidenav-moving-around"><a href="moving-around.html">Moving Around</a></li>
|
||||
<li id="sidenav-simple-edits"><a href="simple-edits.html">Simple Edits</a></li>
|
||||
<li id="sidenav-labels-symbols"><a href="labels-symbols.html">Labels & Symbols</a></li>
|
||||
<li id="sidenav-editing-data"><a href="editing-data.html">Editing Data Operands</a></li>
|
||||
<li id="sidenav-generating-code"><a href="generating-code.html">Generating Code</a></li>
|
||||
</ul>
|
||||
<li id="sidenav-digging-deeper"><a href="digging-deeper.html">Digging Deeper</a></li>
|
||||
<ul>
|
||||
<li id="sidenav-string-formatting"><a href="string-formatting.html">String Formatting</a></li>
|
||||
<li id="sidenav-local-variables"><a href="local-variables.html">Local Variables</a></li>
|
||||
<li id="sidenav-inline-data"><a href="inline-data.html">Inline Data</a></li>
|
||||
<li id="sidenav-odds-ends"><a href="odds-ends.html">Odds & Ends</a></li>
|
||||
</ul>
|
||||
<li id="sidenav-advanced-topics"><a href="advanced-topics.html">Advanced Topics</a></li>
|
||||
<ul>
|
||||
<li id="sidenav-address-tables"><a href="address-tables.html">Address Tables</a></li>
|
||||
<li id="sidenav-extension-scripts"><a href="extension-scripts.html">Extension Scripts</a></li>
|
||||
<li id="sidenav-visualizations"><a href="visualizations.html">Visualizations</a></li>
|
||||
</ul>
|
||||
</ul>
|
||||
<!-- END: sidenav-incl.html -->
|
||||
</div>
|
||||
|
||||
@@ -147,13 +187,20 @@ CopyData lda #<addrs ;get pointer into
|
||||
</div> <!-- grid-container -->
|
||||
|
||||
<div id="prevnext">
|
||||
<a href="#" class="btn-previous">« Previous</a>
|
||||
<a href="#" class="btn-next">Next »</a>
|
||||
<a href="using-sourcegen.html" class="btn-next">Next »</a>
|
||||
</div>
|
||||
|
||||
<div id="footer">
|
||||
<!-- START: /footer-incl.html -->
|
||||
<script>$("#footer").load("/footer-incl.html");</script>
|
||||
<hr/>
|
||||
<p>Copyright 2021 faddenSoft</p>
|
||||
<!-- <p id="screen-size"></p>
|
||||
<script>
|
||||
var w = window.innerWidth;
|
||||
var h = window.innerHeight;
|
||||
var x = document.getElementById("screen-size");
|
||||
x.innerHTML = "DEBUG: initial window size " + w + "x" + h;
|
||||
</script> -->
|
||||
<!-- END: /footer-incl.html -->
|
||||
</div>
|
||||
|
||||
|
@@ -16,29 +16,69 @@
|
||||
|
||||
<div id="masthead">
|
||||
<!-- START: /masthead-incl.html -->
|
||||
<script>$("#masthead").load("/masthead-incl.html");</script>
|
||||
<!--<div class="masthead-title" style="background-image: url('images/screenshot-mainwin.png');">-->
|
||||
<div class="masthead-title">
|
||||
6502bench
|
||||
</div>
|
||||
<!-- END: /masthead-incl.html -->
|
||||
</div>
|
||||
|
||||
<div id="topnav">
|
||||
<!-- START: /topnav-incl.html active:#topnav-sgtutorial -->
|
||||
<script>
|
||||
// Load global topnav content, and mark current page active.
|
||||
$("#topnav").load("/topnav-incl.html", function() {
|
||||
$("#topnav-sgtutorial").addClass("active");
|
||||
});
|
||||
</script>
|
||||
<!-- top navigation bar contents -->
|
||||
<nav>
|
||||
<a id="topnav-home" href="/">HOME</a>
|
||||
<a id="topnav-sgtutorial" class="active" href="/sgtutorial">SourceGen Tutorial</a>
|
||||
<a id="topnav-menuicon" href="javascript:void(0);" class="icon" onclick="toggleSidenav()">
|
||||
<i class="fa fa-bars"></i>
|
||||
</a>
|
||||
</nav>
|
||||
<script>
|
||||
// If page has no sidenav, don't show the sidenav toggle button.
|
||||
if (document.getElementById("sidenav") == undefined) {
|
||||
$("#topnav-menuicon").hide();
|
||||
}
|
||||
|
||||
// Sidenav toggle function.
|
||||
//
|
||||
// Use a jQuery function to toggle the sidenav bar. The initial state
|
||||
// is undefined / inherited, so it will pop in and out as the screen
|
||||
// resizes around the "large" breakpoint.
|
||||
function toggleSidenav() {
|
||||
$("#sidenav").toggle("fast");
|
||||
}
|
||||
</script>
|
||||
<!-- END: /topnav-incl.html -->
|
||||
</div>
|
||||
|
||||
<div id="sidenav">
|
||||
<!-- START: sidenav-incl.html active:#sidenav-address-tables -->
|
||||
<script>
|
||||
// Load local sidenav content, and mark current page active.
|
||||
$("#sidenav").load("sidenav-incl.html", function() {
|
||||
$("#sidenav-address-tables").addClass("active");
|
||||
});
|
||||
</script>
|
||||
<!-- side navigation bar contents -->
|
||||
<ul>
|
||||
<li id="sidenav-index"><a href="./">Introduction</a></li>
|
||||
<li id="sidenav-about-disasm"><a href="about-disasm.html">About Disassembly</a></li>
|
||||
<li id="sidenav-using-sourcegen"><a href="using-sourcegen.html">Using SourceGen</a></li>
|
||||
<ul>
|
||||
<li id="sidenav-moving-around"><a href="moving-around.html">Moving Around</a></li>
|
||||
<li id="sidenav-simple-edits"><a href="simple-edits.html">Simple Edits</a></li>
|
||||
<li id="sidenav-labels-symbols"><a href="labels-symbols.html">Labels & Symbols</a></li>
|
||||
<li id="sidenav-editing-data"><a href="editing-data.html">Editing Data Operands</a></li>
|
||||
<li id="sidenav-generating-code"><a href="generating-code.html">Generating Code</a></li>
|
||||
</ul>
|
||||
<li id="sidenav-digging-deeper"><a href="digging-deeper.html">Digging Deeper</a></li>
|
||||
<ul>
|
||||
<li id="sidenav-string-formatting"><a href="string-formatting.html">String Formatting</a></li>
|
||||
<li id="sidenav-local-variables"><a href="local-variables.html">Local Variables</a></li>
|
||||
<li id="sidenav-inline-data"><a href="inline-data.html">Inline Data</a></li>
|
||||
<li id="sidenav-odds-ends"><a href="odds-ends.html">Odds & Ends</a></li>
|
||||
</ul>
|
||||
<li id="sidenav-advanced-topics"><a href="advanced-topics.html">Advanced Topics</a></li>
|
||||
<ul>
|
||||
<li id="sidenav-address-tables" class="active"><a href="address-tables.html">Address Tables</a></li>
|
||||
<li id="sidenav-extension-scripts"><a href="extension-scripts.html">Extension Scripts</a></li>
|
||||
<li id="sidenav-visualizations"><a href="visualizations.html">Visualizations</a></li>
|
||||
</ul>
|
||||
</ul>
|
||||
<!-- END: sidenav-incl.html -->
|
||||
</div>
|
||||
|
||||
@@ -253,13 +293,21 @@
|
||||
</div> <!-- #main -->
|
||||
|
||||
<div id="prevnext">
|
||||
<a href="#" class="btn-previous">« Previous</a>
|
||||
<a href="#" class="btn-next">Next »</a>
|
||||
<a href="advanced-topics.html" class="btn-previous">« Previous</a>
|
||||
<a href="extension-scripts.html" class="btn-next">Next »</a>
|
||||
</div>
|
||||
|
||||
<div id="footer">
|
||||
<!-- START: /footer-incl.html -->
|
||||
<script>$("#footer").load("/footer-incl.html");</script>
|
||||
<hr/>
|
||||
<p>Copyright 2021 faddenSoft</p>
|
||||
<!-- <p id="screen-size"></p>
|
||||
<script>
|
||||
var w = window.innerWidth;
|
||||
var h = window.innerHeight;
|
||||
var x = document.getElementById("screen-size");
|
||||
x.innerHTML = "DEBUG: initial window size " + w + "x" + h;
|
||||
</script> -->
|
||||
<!-- END: /footer-incl.html -->
|
||||
</div>
|
||||
|
||||
|
@@ -16,29 +16,69 @@
|
||||
|
||||
<div id="masthead">
|
||||
<!-- START: /masthead-incl.html -->
|
||||
<script>$("#masthead").load("/masthead-incl.html");</script>
|
||||
<!--<div class="masthead-title" style="background-image: url('images/screenshot-mainwin.png');">-->
|
||||
<div class="masthead-title">
|
||||
6502bench
|
||||
</div>
|
||||
<!-- END: /masthead-incl.html -->
|
||||
</div>
|
||||
|
||||
<div id="topnav">
|
||||
<!-- START: /topnav-incl.html active:#topnav-sgtutorial -->
|
||||
<script>
|
||||
// Load global topnav content, and mark current page active.
|
||||
$("#topnav").load("/topnav-incl.html", function() {
|
||||
$("#topnav-sgtutorial").addClass("active");
|
||||
});
|
||||
</script>
|
||||
<!-- top navigation bar contents -->
|
||||
<nav>
|
||||
<a id="topnav-home" href="/">HOME</a>
|
||||
<a id="topnav-sgtutorial" class="active" href="/sgtutorial">SourceGen Tutorial</a>
|
||||
<a id="topnav-menuicon" href="javascript:void(0);" class="icon" onclick="toggleSidenav()">
|
||||
<i class="fa fa-bars"></i>
|
||||
</a>
|
||||
</nav>
|
||||
<script>
|
||||
// If page has no sidenav, don't show the sidenav toggle button.
|
||||
if (document.getElementById("sidenav") == undefined) {
|
||||
$("#topnav-menuicon").hide();
|
||||
}
|
||||
|
||||
// Sidenav toggle function.
|
||||
//
|
||||
// Use a jQuery function to toggle the sidenav bar. The initial state
|
||||
// is undefined / inherited, so it will pop in and out as the screen
|
||||
// resizes around the "large" breakpoint.
|
||||
function toggleSidenav() {
|
||||
$("#sidenav").toggle("fast");
|
||||
}
|
||||
</script>
|
||||
<!-- END: /topnav-incl.html -->
|
||||
</div>
|
||||
|
||||
<div id="sidenav">
|
||||
<!-- START: sidenav-incl.html active:#sidenav-advanced-topics -->
|
||||
<script>
|
||||
// Load local sidenav content, and mark current page active.
|
||||
$("#sidenav").load("sidenav-incl.html", function() {
|
||||
$("#sidenav-advanced-topics").addClass("active");
|
||||
});
|
||||
</script>
|
||||
<!-- side navigation bar contents -->
|
||||
<ul>
|
||||
<li id="sidenav-index"><a href="./">Introduction</a></li>
|
||||
<li id="sidenav-about-disasm"><a href="about-disasm.html">About Disassembly</a></li>
|
||||
<li id="sidenav-using-sourcegen"><a href="using-sourcegen.html">Using SourceGen</a></li>
|
||||
<ul>
|
||||
<li id="sidenav-moving-around"><a href="moving-around.html">Moving Around</a></li>
|
||||
<li id="sidenav-simple-edits"><a href="simple-edits.html">Simple Edits</a></li>
|
||||
<li id="sidenav-labels-symbols"><a href="labels-symbols.html">Labels & Symbols</a></li>
|
||||
<li id="sidenav-editing-data"><a href="editing-data.html">Editing Data Operands</a></li>
|
||||
<li id="sidenav-generating-code"><a href="generating-code.html">Generating Code</a></li>
|
||||
</ul>
|
||||
<li id="sidenav-digging-deeper"><a href="digging-deeper.html">Digging Deeper</a></li>
|
||||
<ul>
|
||||
<li id="sidenav-string-formatting"><a href="string-formatting.html">String Formatting</a></li>
|
||||
<li id="sidenav-local-variables"><a href="local-variables.html">Local Variables</a></li>
|
||||
<li id="sidenav-inline-data"><a href="inline-data.html">Inline Data</a></li>
|
||||
<li id="sidenav-odds-ends"><a href="odds-ends.html">Odds & Ends</a></li>
|
||||
</ul>
|
||||
<li id="sidenav-advanced-topics" class="active"><a href="advanced-topics.html">Advanced Topics</a></li>
|
||||
<ul>
|
||||
<li id="sidenav-address-tables"><a href="address-tables.html">Address Tables</a></li>
|
||||
<li id="sidenav-extension-scripts"><a href="extension-scripts.html">Extension Scripts</a></li>
|
||||
<li id="sidenav-visualizations"><a href="visualizations.html">Visualizations</a></li>
|
||||
</ul>
|
||||
</ul>
|
||||
<!-- END: sidenav-incl.html -->
|
||||
</div>
|
||||
|
||||
@@ -66,13 +106,21 @@ All of the tutorials assume you are already familiar with SourceGen.</p>
|
||||
</div> <!-- #main -->
|
||||
|
||||
<div id="prevnext">
|
||||
<a href="#" class="btn-previous">« Previous</a>
|
||||
<a href="#" class="btn-next">Next »</a>
|
||||
<a href="odds-ends.html" class="btn-previous">« Previous</a>
|
||||
<a href="address-tables.html" class="btn-next">Next »</a>
|
||||
</div>
|
||||
|
||||
<div id="footer">
|
||||
<!-- START: /footer-incl.html -->
|
||||
<script>$("#footer").load("/footer-incl.html");</script>
|
||||
<hr/>
|
||||
<p>Copyright 2021 faddenSoft</p>
|
||||
<!-- <p id="screen-size"></p>
|
||||
<script>
|
||||
var w = window.innerWidth;
|
||||
var h = window.innerHeight;
|
||||
var x = document.getElementById("screen-size");
|
||||
x.innerHTML = "DEBUG: initial window size " + w + "x" + h;
|
||||
</script> -->
|
||||
<!-- END: /footer-incl.html -->
|
||||
</div>
|
||||
|
||||
|
@@ -16,29 +16,69 @@
|
||||
|
||||
<div id="masthead">
|
||||
<!-- START: /masthead-incl.html -->
|
||||
<script>$("#masthead").load("/masthead-incl.html");</script>
|
||||
<!--<div class="masthead-title" style="background-image: url('images/screenshot-mainwin.png');">-->
|
||||
<div class="masthead-title">
|
||||
6502bench
|
||||
</div>
|
||||
<!-- END: /masthead-incl.html -->
|
||||
</div>
|
||||
|
||||
<div id="topnav">
|
||||
<!-- START: /topnav-incl.html active:#topnav-sgtutorial -->
|
||||
<script>
|
||||
// Load global topnav content, and mark current page active.
|
||||
$("#topnav").load("/topnav-incl.html", function() {
|
||||
$("#topnav-sgtutorial").addClass("active");
|
||||
});
|
||||
</script>
|
||||
<!-- top navigation bar contents -->
|
||||
<nav>
|
||||
<a id="topnav-home" href="/">HOME</a>
|
||||
<a id="topnav-sgtutorial" class="active" href="/sgtutorial">SourceGen Tutorial</a>
|
||||
<a id="topnav-menuicon" href="javascript:void(0);" class="icon" onclick="toggleSidenav()">
|
||||
<i class="fa fa-bars"></i>
|
||||
</a>
|
||||
</nav>
|
||||
<script>
|
||||
// If page has no sidenav, don't show the sidenav toggle button.
|
||||
if (document.getElementById("sidenav") == undefined) {
|
||||
$("#topnav-menuicon").hide();
|
||||
}
|
||||
|
||||
// Sidenav toggle function.
|
||||
//
|
||||
// Use a jQuery function to toggle the sidenav bar. The initial state
|
||||
// is undefined / inherited, so it will pop in and out as the screen
|
||||
// resizes around the "large" breakpoint.
|
||||
function toggleSidenav() {
|
||||
$("#sidenav").toggle("fast");
|
||||
}
|
||||
</script>
|
||||
<!-- END: /topnav-incl.html -->
|
||||
</div>
|
||||
|
||||
<div id="sidenav">
|
||||
<!-- START: sidenav-incl.html active:#sidenav-digging-deeper -->
|
||||
<script>
|
||||
// Load local sidenav content, and mark current page active.
|
||||
$("#sidenav").load("sidenav-incl.html", function() {
|
||||
$("#sidenav-digging-deeper").addClass("active");
|
||||
});
|
||||
</script>
|
||||
<!-- side navigation bar contents -->
|
||||
<ul>
|
||||
<li id="sidenav-index"><a href="./">Introduction</a></li>
|
||||
<li id="sidenav-about-disasm"><a href="about-disasm.html">About Disassembly</a></li>
|
||||
<li id="sidenav-using-sourcegen"><a href="using-sourcegen.html">Using SourceGen</a></li>
|
||||
<ul>
|
||||
<li id="sidenav-moving-around"><a href="moving-around.html">Moving Around</a></li>
|
||||
<li id="sidenav-simple-edits"><a href="simple-edits.html">Simple Edits</a></li>
|
||||
<li id="sidenav-labels-symbols"><a href="labels-symbols.html">Labels & Symbols</a></li>
|
||||
<li id="sidenav-editing-data"><a href="editing-data.html">Editing Data Operands</a></li>
|
||||
<li id="sidenav-generating-code"><a href="generating-code.html">Generating Code</a></li>
|
||||
</ul>
|
||||
<li id="sidenav-digging-deeper" class="active"><a href="digging-deeper.html">Digging Deeper</a></li>
|
||||
<ul>
|
||||
<li id="sidenav-string-formatting"><a href="string-formatting.html">String Formatting</a></li>
|
||||
<li id="sidenav-local-variables"><a href="local-variables.html">Local Variables</a></li>
|
||||
<li id="sidenav-inline-data"><a href="inline-data.html">Inline Data</a></li>
|
||||
<li id="sidenav-odds-ends"><a href="odds-ends.html">Odds & Ends</a></li>
|
||||
</ul>
|
||||
<li id="sidenav-advanced-topics"><a href="advanced-topics.html">Advanced Topics</a></li>
|
||||
<ul>
|
||||
<li id="sidenav-address-tables"><a href="address-tables.html">Address Tables</a></li>
|
||||
<li id="sidenav-extension-scripts"><a href="extension-scripts.html">Extension Scripts</a></li>
|
||||
<li id="sidenav-visualizations"><a href="visualizations.html">Visualizations</a></li>
|
||||
</ul>
|
||||
</ul>
|
||||
<!-- END: sidenav-incl.html -->
|
||||
</div>
|
||||
|
||||
@@ -153,13 +193,21 @@
|
||||
</div> <!-- #main -->
|
||||
|
||||
<div id="prevnext">
|
||||
<a href="#" class="btn-previous">« Previous</a>
|
||||
<a href="#" class="btn-next">Next »</a>
|
||||
<a href="generating-code.html" class="btn-previous">« Previous</a>
|
||||
<a href="string-formatting.html" class="btn-next">Next »</a>
|
||||
</div>
|
||||
|
||||
<div id="footer">
|
||||
<!-- START: /footer-incl.html -->
|
||||
<script>$("#footer").load("/footer-incl.html");</script>
|
||||
<hr/>
|
||||
<p>Copyright 2021 faddenSoft</p>
|
||||
<!-- <p id="screen-size"></p>
|
||||
<script>
|
||||
var w = window.innerWidth;
|
||||
var h = window.innerHeight;
|
||||
var x = document.getElementById("screen-size");
|
||||
x.innerHTML = "DEBUG: initial window size " + w + "x" + h;
|
||||
</script> -->
|
||||
<!-- END: /footer-incl.html -->
|
||||
</div>
|
||||
|
||||
|
@@ -16,29 +16,69 @@
|
||||
|
||||
<div id="masthead">
|
||||
<!-- START: /masthead-incl.html -->
|
||||
<script>$("#masthead").load("/masthead-incl.html");</script>
|
||||
<!--<div class="masthead-title" style="background-image: url('images/screenshot-mainwin.png');">-->
|
||||
<div class="masthead-title">
|
||||
6502bench
|
||||
</div>
|
||||
<!-- END: /masthead-incl.html -->
|
||||
</div>
|
||||
|
||||
<div id="topnav">
|
||||
<!-- START: /topnav-incl.html active:#topnav-sgtutorial -->
|
||||
<script>
|
||||
// Load global topnav content, and mark current page active.
|
||||
$("#topnav").load("/topnav-incl.html", function() {
|
||||
$("#topnav-sgtutorial").addClass("active");
|
||||
});
|
||||
</script>
|
||||
<!-- top navigation bar contents -->
|
||||
<nav>
|
||||
<a id="topnav-home" href="/">HOME</a>
|
||||
<a id="topnav-sgtutorial" class="active" href="/sgtutorial">SourceGen Tutorial</a>
|
||||
<a id="topnav-menuicon" href="javascript:void(0);" class="icon" onclick="toggleSidenav()">
|
||||
<i class="fa fa-bars"></i>
|
||||
</a>
|
||||
</nav>
|
||||
<script>
|
||||
// If page has no sidenav, don't show the sidenav toggle button.
|
||||
if (document.getElementById("sidenav") == undefined) {
|
||||
$("#topnav-menuicon").hide();
|
||||
}
|
||||
|
||||
// Sidenav toggle function.
|
||||
//
|
||||
// Use a jQuery function to toggle the sidenav bar. The initial state
|
||||
// is undefined / inherited, so it will pop in and out as the screen
|
||||
// resizes around the "large" breakpoint.
|
||||
function toggleSidenav() {
|
||||
$("#sidenav").toggle("fast");
|
||||
}
|
||||
</script>
|
||||
<!-- END: /topnav-incl.html -->
|
||||
</div>
|
||||
|
||||
<div id="sidenav">
|
||||
<!-- START: sidenav-incl.html active:#sidenav-editing-data -->
|
||||
<script>
|
||||
// Load local sidenav content, and mark current page active.
|
||||
$("#sidenav").load("sidenav-incl.html", function() {
|
||||
$("#sidenav-editing-data").addClass("active");
|
||||
});
|
||||
</script>
|
||||
<!-- side navigation bar contents -->
|
||||
<ul>
|
||||
<li id="sidenav-index"><a href="./">Introduction</a></li>
|
||||
<li id="sidenav-about-disasm"><a href="about-disasm.html">About Disassembly</a></li>
|
||||
<li id="sidenav-using-sourcegen"><a href="using-sourcegen.html">Using SourceGen</a></li>
|
||||
<ul>
|
||||
<li id="sidenav-moving-around"><a href="moving-around.html">Moving Around</a></li>
|
||||
<li id="sidenav-simple-edits"><a href="simple-edits.html">Simple Edits</a></li>
|
||||
<li id="sidenav-labels-symbols"><a href="labels-symbols.html">Labels & Symbols</a></li>
|
||||
<li id="sidenav-editing-data" class="active"><a href="editing-data.html">Editing Data Operands</a></li>
|
||||
<li id="sidenav-generating-code"><a href="generating-code.html">Generating Code</a></li>
|
||||
</ul>
|
||||
<li id="sidenav-digging-deeper"><a href="digging-deeper.html">Digging Deeper</a></li>
|
||||
<ul>
|
||||
<li id="sidenav-string-formatting"><a href="string-formatting.html">String Formatting</a></li>
|
||||
<li id="sidenav-local-variables"><a href="local-variables.html">Local Variables</a></li>
|
||||
<li id="sidenav-inline-data"><a href="inline-data.html">Inline Data</a></li>
|
||||
<li id="sidenav-odds-ends"><a href="odds-ends.html">Odds & Ends</a></li>
|
||||
</ul>
|
||||
<li id="sidenav-advanced-topics"><a href="advanced-topics.html">Advanced Topics</a></li>
|
||||
<ul>
|
||||
<li id="sidenav-address-tables"><a href="address-tables.html">Address Tables</a></li>
|
||||
<li id="sidenav-extension-scripts"><a href="extension-scripts.html">Extension Scripts</a></li>
|
||||
<li id="sidenav-visualizations"><a href="visualizations.html">Visualizations</a></li>
|
||||
</ul>
|
||||
</ul>
|
||||
<!-- END: sidenav-incl.html -->
|
||||
</div>
|
||||
|
||||
@@ -190,13 +230,21 @@
|
||||
</div> <!-- #main -->
|
||||
|
||||
<div id="prevnext">
|
||||
<a href="#" class="btn-previous">« Previous</a>
|
||||
<a href="#" class="btn-next">Next »</a>
|
||||
<a href="labels-symbols.html" class="btn-previous">« Previous</a>
|
||||
<a href="generating-code.html" class="btn-next">Next »</a>
|
||||
</div>
|
||||
|
||||
<div id="footer">
|
||||
<!-- START: /footer-incl.html -->
|
||||
<script>$("#footer").load("/footer-incl.html");</script>
|
||||
<hr/>
|
||||
<p>Copyright 2021 faddenSoft</p>
|
||||
<!-- <p id="screen-size"></p>
|
||||
<script>
|
||||
var w = window.innerWidth;
|
||||
var h = window.innerHeight;
|
||||
var x = document.getElementById("screen-size");
|
||||
x.innerHTML = "DEBUG: initial window size " + w + "x" + h;
|
||||
</script> -->
|
||||
<!-- END: /footer-incl.html -->
|
||||
</div>
|
||||
|
||||
|
@@ -16,29 +16,69 @@
|
||||
|
||||
<div id="masthead">
|
||||
<!-- START: /masthead-incl.html -->
|
||||
<script>$("#masthead").load("/masthead-incl.html");</script>
|
||||
<!--<div class="masthead-title" style="background-image: url('images/screenshot-mainwin.png');">-->
|
||||
<div class="masthead-title">
|
||||
6502bench
|
||||
</div>
|
||||
<!-- END: /masthead-incl.html -->
|
||||
</div>
|
||||
|
||||
<div id="topnav">
|
||||
<!-- START: /topnav-incl.html active:#topnav-sgtutorial -->
|
||||
<script>
|
||||
// Load global topnav content, and mark current page active.
|
||||
$("#topnav").load("/topnav-incl.html", function() {
|
||||
$("#topnav-sgtutorial").addClass("active");
|
||||
});
|
||||
</script>
|
||||
<!-- top navigation bar contents -->
|
||||
<nav>
|
||||
<a id="topnav-home" href="/">HOME</a>
|
||||
<a id="topnav-sgtutorial" class="active" href="/sgtutorial">SourceGen Tutorial</a>
|
||||
<a id="topnav-menuicon" href="javascript:void(0);" class="icon" onclick="toggleSidenav()">
|
||||
<i class="fa fa-bars"></i>
|
||||
</a>
|
||||
</nav>
|
||||
<script>
|
||||
// If page has no sidenav, don't show the sidenav toggle button.
|
||||
if (document.getElementById("sidenav") == undefined) {
|
||||
$("#topnav-menuicon").hide();
|
||||
}
|
||||
|
||||
// Sidenav toggle function.
|
||||
//
|
||||
// Use a jQuery function to toggle the sidenav bar. The initial state
|
||||
// is undefined / inherited, so it will pop in and out as the screen
|
||||
// resizes around the "large" breakpoint.
|
||||
function toggleSidenav() {
|
||||
$("#sidenav").toggle("fast");
|
||||
}
|
||||
</script>
|
||||
<!-- END: /topnav-incl.html -->
|
||||
</div>
|
||||
|
||||
<div id="sidenav">
|
||||
<!-- START: sidenav-incl.html active:#sidenav-extension-scripts -->
|
||||
<script>
|
||||
// Load local sidenav content, and mark current page active.
|
||||
$("#sidenav").load("sidenav-incl.html", function() {
|
||||
$("#sidenav-extension-scripts").addClass("active");
|
||||
});
|
||||
</script>
|
||||
<!-- side navigation bar contents -->
|
||||
<ul>
|
||||
<li id="sidenav-index"><a href="./">Introduction</a></li>
|
||||
<li id="sidenav-about-disasm"><a href="about-disasm.html">About Disassembly</a></li>
|
||||
<li id="sidenav-using-sourcegen"><a href="using-sourcegen.html">Using SourceGen</a></li>
|
||||
<ul>
|
||||
<li id="sidenav-moving-around"><a href="moving-around.html">Moving Around</a></li>
|
||||
<li id="sidenav-simple-edits"><a href="simple-edits.html">Simple Edits</a></li>
|
||||
<li id="sidenav-labels-symbols"><a href="labels-symbols.html">Labels & Symbols</a></li>
|
||||
<li id="sidenav-editing-data"><a href="editing-data.html">Editing Data Operands</a></li>
|
||||
<li id="sidenav-generating-code"><a href="generating-code.html">Generating Code</a></li>
|
||||
</ul>
|
||||
<li id="sidenav-digging-deeper"><a href="digging-deeper.html">Digging Deeper</a></li>
|
||||
<ul>
|
||||
<li id="sidenav-string-formatting"><a href="string-formatting.html">String Formatting</a></li>
|
||||
<li id="sidenav-local-variables"><a href="local-variables.html">Local Variables</a></li>
|
||||
<li id="sidenav-inline-data"><a href="inline-data.html">Inline Data</a></li>
|
||||
<li id="sidenav-odds-ends"><a href="odds-ends.html">Odds & Ends</a></li>
|
||||
</ul>
|
||||
<li id="sidenav-advanced-topics"><a href="advanced-topics.html">Advanced Topics</a></li>
|
||||
<ul>
|
||||
<li id="sidenav-address-tables"><a href="address-tables.html">Address Tables</a></li>
|
||||
<li id="sidenav-extension-scripts" class="active"><a href="extension-scripts.html">Extension Scripts</a></li>
|
||||
<li id="sidenav-visualizations"><a href="visualizations.html">Visualizations</a></li>
|
||||
</ul>
|
||||
</ul>
|
||||
<!-- END: sidenav-incl.html -->
|
||||
</div>
|
||||
|
||||
@@ -177,13 +217,21 @@
|
||||
</div> <!-- #main -->
|
||||
|
||||
<div id="prevnext">
|
||||
<a href="#" class="btn-previous">« Previous</a>
|
||||
<a href="#" class="btn-next">Next »</a>
|
||||
<a href="address-tables.html" class="btn-previous">« Previous</a>
|
||||
<a href="visualizations.html" class="btn-next">Next »</a>
|
||||
</div>
|
||||
|
||||
<div id="footer">
|
||||
<!-- START: /footer-incl.html -->
|
||||
<script>$("#footer").load("/footer-incl.html");</script>
|
||||
<hr/>
|
||||
<p>Copyright 2021 faddenSoft</p>
|
||||
<!-- <p id="screen-size"></p>
|
||||
<script>
|
||||
var w = window.innerWidth;
|
||||
var h = window.innerHeight;
|
||||
var x = document.getElementById("screen-size");
|
||||
x.innerHTML = "DEBUG: initial window size " + w + "x" + h;
|
||||
</script> -->
|
||||
<!-- END: /footer-incl.html -->
|
||||
</div>
|
||||
|
||||
|
@@ -16,29 +16,69 @@
|
||||
|
||||
<div id="masthead">
|
||||
<!-- START: /masthead-incl.html -->
|
||||
<script>$("#masthead").load("/masthead-incl.html");</script>
|
||||
<!--<div class="masthead-title" style="background-image: url('images/screenshot-mainwin.png');">-->
|
||||
<div class="masthead-title">
|
||||
6502bench
|
||||
</div>
|
||||
<!-- END: /masthead-incl.html -->
|
||||
</div>
|
||||
|
||||
<div id="topnav">
|
||||
<!-- START: /topnav-incl.html active:#topnav-sgtutorial -->
|
||||
<script>
|
||||
// Load global topnav content, and mark current page active.
|
||||
$("#topnav").load("/topnav-incl.html", function() {
|
||||
$("#topnav-sgtutorial").addClass("active");
|
||||
});
|
||||
</script>
|
||||
<!-- top navigation bar contents -->
|
||||
<nav>
|
||||
<a id="topnav-home" href="/">HOME</a>
|
||||
<a id="topnav-sgtutorial" class="active" href="/sgtutorial">SourceGen Tutorial</a>
|
||||
<a id="topnav-menuicon" href="javascript:void(0);" class="icon" onclick="toggleSidenav()">
|
||||
<i class="fa fa-bars"></i>
|
||||
</a>
|
||||
</nav>
|
||||
<script>
|
||||
// If page has no sidenav, don't show the sidenav toggle button.
|
||||
if (document.getElementById("sidenav") == undefined) {
|
||||
$("#topnav-menuicon").hide();
|
||||
}
|
||||
|
||||
// Sidenav toggle function.
|
||||
//
|
||||
// Use a jQuery function to toggle the sidenav bar. The initial state
|
||||
// is undefined / inherited, so it will pop in and out as the screen
|
||||
// resizes around the "large" breakpoint.
|
||||
function toggleSidenav() {
|
||||
$("#sidenav").toggle("fast");
|
||||
}
|
||||
</script>
|
||||
<!-- END: /topnav-incl.html -->
|
||||
</div>
|
||||
|
||||
<div id="sidenav">
|
||||
<!-- START: sidenav-incl.html active:#sidenav-generating-code -->
|
||||
<script>
|
||||
// Load local sidenav content, and mark current page active.
|
||||
$("#sidenav").load("sidenav-incl.html", function() {
|
||||
$("#sidenav-generating-code").addClass("active");
|
||||
});
|
||||
</script>
|
||||
<!-- side navigation bar contents -->
|
||||
<ul>
|
||||
<li id="sidenav-index"><a href="./">Introduction</a></li>
|
||||
<li id="sidenav-about-disasm"><a href="about-disasm.html">About Disassembly</a></li>
|
||||
<li id="sidenav-using-sourcegen"><a href="using-sourcegen.html">Using SourceGen</a></li>
|
||||
<ul>
|
||||
<li id="sidenav-moving-around"><a href="moving-around.html">Moving Around</a></li>
|
||||
<li id="sidenav-simple-edits"><a href="simple-edits.html">Simple Edits</a></li>
|
||||
<li id="sidenav-labels-symbols"><a href="labels-symbols.html">Labels & Symbols</a></li>
|
||||
<li id="sidenav-editing-data"><a href="editing-data.html">Editing Data Operands</a></li>
|
||||
<li id="sidenav-generating-code" class="active"><a href="generating-code.html">Generating Code</a></li>
|
||||
</ul>
|
||||
<li id="sidenav-digging-deeper"><a href="digging-deeper.html">Digging Deeper</a></li>
|
||||
<ul>
|
||||
<li id="sidenav-string-formatting"><a href="string-formatting.html">String Formatting</a></li>
|
||||
<li id="sidenav-local-variables"><a href="local-variables.html">Local Variables</a></li>
|
||||
<li id="sidenav-inline-data"><a href="inline-data.html">Inline Data</a></li>
|
||||
<li id="sidenav-odds-ends"><a href="odds-ends.html">Odds & Ends</a></li>
|
||||
</ul>
|
||||
<li id="sidenav-advanced-topics"><a href="advanced-topics.html">Advanced Topics</a></li>
|
||||
<ul>
|
||||
<li id="sidenav-address-tables"><a href="address-tables.html">Address Tables</a></li>
|
||||
<li id="sidenav-extension-scripts"><a href="extension-scripts.html">Extension Scripts</a></li>
|
||||
<li id="sidenav-visualizations"><a href="visualizations.html">Visualizations</a></li>
|
||||
</ul>
|
||||
</ul>
|
||||
<!-- END: sidenav-incl.html -->
|
||||
</div>
|
||||
|
||||
@@ -117,13 +157,21 @@
|
||||
</div> <!-- #main -->
|
||||
|
||||
<div id="prevnext">
|
||||
<a href="#" class="btn-previous">« Previous</a>
|
||||
<a href="#" class="btn-next">Next »</a>
|
||||
<a href="editing-data.html" class="btn-previous">« Previous</a>
|
||||
<a href="digging-deeper.html" class="btn-next">Next »</a>
|
||||
</div>
|
||||
|
||||
<div id="footer">
|
||||
<!-- START: /footer-incl.html -->
|
||||
<script>$("#footer").load("/footer-incl.html");</script>
|
||||
<hr/>
|
||||
<p>Copyright 2021 faddenSoft</p>
|
||||
<!-- <p id="screen-size"></p>
|
||||
<script>
|
||||
var w = window.innerWidth;
|
||||
var h = window.innerHeight;
|
||||
var x = document.getElementById("screen-size");
|
||||
x.innerHTML = "DEBUG: initial window size " + w + "x" + h;
|
||||
</script> -->
|
||||
<!-- END: /footer-incl.html -->
|
||||
</div>
|
||||
|
||||
|
@@ -16,29 +16,69 @@
|
||||
|
||||
<div id="masthead">
|
||||
<!-- START: /masthead-incl.html -->
|
||||
<script>$("#masthead").load("/masthead-incl.html");</script>
|
||||
<!--<div class="masthead-title" style="background-image: url('images/screenshot-mainwin.png');">-->
|
||||
<div class="masthead-title">
|
||||
6502bench
|
||||
</div>
|
||||
<!-- END: /masthead-incl.html -->
|
||||
</div>
|
||||
|
||||
<div id="topnav">
|
||||
<!-- START: /topnav-incl.html active:#topnav-sgtutorial -->
|
||||
<script>
|
||||
// Load global topnav content, and mark current page active.
|
||||
$("#topnav").load("/topnav-incl.html", function() {
|
||||
$("#topnav-sgtutorial").addClass("active");
|
||||
});
|
||||
</script>
|
||||
<!-- top navigation bar contents -->
|
||||
<nav>
|
||||
<a id="topnav-home" href="/">HOME</a>
|
||||
<a id="topnav-sgtutorial" class="active" href="/sgtutorial">SourceGen Tutorial</a>
|
||||
<a id="topnav-menuicon" href="javascript:void(0);" class="icon" onclick="toggleSidenav()">
|
||||
<i class="fa fa-bars"></i>
|
||||
</a>
|
||||
</nav>
|
||||
<script>
|
||||
// If page has no sidenav, don't show the sidenav toggle button.
|
||||
if (document.getElementById("sidenav") == undefined) {
|
||||
$("#topnav-menuicon").hide();
|
||||
}
|
||||
|
||||
// Sidenav toggle function.
|
||||
//
|
||||
// Use a jQuery function to toggle the sidenav bar. The initial state
|
||||
// is undefined / inherited, so it will pop in and out as the screen
|
||||
// resizes around the "large" breakpoint.
|
||||
function toggleSidenav() {
|
||||
$("#sidenav").toggle("fast");
|
||||
}
|
||||
</script>
|
||||
<!-- END: /topnav-incl.html -->
|
||||
</div>
|
||||
|
||||
<div id="sidenav">
|
||||
<!-- START: sidenav-incl.html active:#sidenav-index -->
|
||||
<script>
|
||||
// Load local sidenav content, and mark current page active.
|
||||
$("#sidenav").load("sidenav-incl.html", function() {
|
||||
$("#sidenav-index").addClass("active");
|
||||
});
|
||||
</script>
|
||||
<!-- side navigation bar contents -->
|
||||
<ul>
|
||||
<li id="sidenav-index" class="active"><a href="./">Introduction</a></li>
|
||||
<li id="sidenav-about-disasm"><a href="about-disasm.html">About Disassembly</a></li>
|
||||
<li id="sidenav-using-sourcegen"><a href="using-sourcegen.html">Using SourceGen</a></li>
|
||||
<ul>
|
||||
<li id="sidenav-moving-around"><a href="moving-around.html">Moving Around</a></li>
|
||||
<li id="sidenav-simple-edits"><a href="simple-edits.html">Simple Edits</a></li>
|
||||
<li id="sidenav-labels-symbols"><a href="labels-symbols.html">Labels & Symbols</a></li>
|
||||
<li id="sidenav-editing-data"><a href="editing-data.html">Editing Data Operands</a></li>
|
||||
<li id="sidenav-generating-code"><a href="generating-code.html">Generating Code</a></li>
|
||||
</ul>
|
||||
<li id="sidenav-digging-deeper"><a href="digging-deeper.html">Digging Deeper</a></li>
|
||||
<ul>
|
||||
<li id="sidenav-string-formatting"><a href="string-formatting.html">String Formatting</a></li>
|
||||
<li id="sidenav-local-variables"><a href="local-variables.html">Local Variables</a></li>
|
||||
<li id="sidenav-inline-data"><a href="inline-data.html">Inline Data</a></li>
|
||||
<li id="sidenav-odds-ends"><a href="odds-ends.html">Odds & Ends</a></li>
|
||||
</ul>
|
||||
<li id="sidenav-advanced-topics"><a href="advanced-topics.html">Advanced Topics</a></li>
|
||||
<ul>
|
||||
<li id="sidenav-address-tables"><a href="address-tables.html">Address Tables</a></li>
|
||||
<li id="sidenav-extension-scripts"><a href="extension-scripts.html">Extension Scripts</a></li>
|
||||
<li id="sidenav-visualizations"><a href="visualizations.html">Visualizations</a></li>
|
||||
</ul>
|
||||
</ul>
|
||||
<!-- END: sidenav-incl.html -->
|
||||
</div>
|
||||
|
||||
@@ -78,7 +118,15 @@ URL.
|
||||
|
||||
<div id="footer">
|
||||
<!-- START: /footer-incl.html -->
|
||||
<script>$("#footer").load("/footer-incl.html");</script>
|
||||
<hr/>
|
||||
<p>Copyright 2021 faddenSoft</p>
|
||||
<!-- <p id="screen-size"></p>
|
||||
<script>
|
||||
var w = window.innerWidth;
|
||||
var h = window.innerHeight;
|
||||
var x = document.getElementById("screen-size");
|
||||
x.innerHTML = "DEBUG: initial window size " + w + "x" + h;
|
||||
</script> -->
|
||||
<!-- END: /footer-incl.html -->
|
||||
</div>
|
||||
|
||||
|
@@ -16,29 +16,69 @@
|
||||
|
||||
<div id="masthead">
|
||||
<!-- START: /masthead-incl.html -->
|
||||
<script>$("#masthead").load("/masthead-incl.html");</script>
|
||||
<!--<div class="masthead-title" style="background-image: url('images/screenshot-mainwin.png');">-->
|
||||
<div class="masthead-title">
|
||||
6502bench
|
||||
</div>
|
||||
<!-- END: /masthead-incl.html -->
|
||||
</div>
|
||||
|
||||
<div id="topnav">
|
||||
<!-- START: /topnav-incl.html active:#topnav-sgtutorial -->
|
||||
<script>
|
||||
// Load global topnav content, and mark current page active.
|
||||
$("#topnav").load("/topnav-incl.html", function() {
|
||||
$("#topnav-sgtutorial").addClass("active");
|
||||
});
|
||||
</script>
|
||||
<!-- top navigation bar contents -->
|
||||
<nav>
|
||||
<a id="topnav-home" href="/">HOME</a>
|
||||
<a id="topnav-sgtutorial" class="active" href="/sgtutorial">SourceGen Tutorial</a>
|
||||
<a id="topnav-menuicon" href="javascript:void(0);" class="icon" onclick="toggleSidenav()">
|
||||
<i class="fa fa-bars"></i>
|
||||
</a>
|
||||
</nav>
|
||||
<script>
|
||||
// If page has no sidenav, don't show the sidenav toggle button.
|
||||
if (document.getElementById("sidenav") == undefined) {
|
||||
$("#topnav-menuicon").hide();
|
||||
}
|
||||
|
||||
// Sidenav toggle function.
|
||||
//
|
||||
// Use a jQuery function to toggle the sidenav bar. The initial state
|
||||
// is undefined / inherited, so it will pop in and out as the screen
|
||||
// resizes around the "large" breakpoint.
|
||||
function toggleSidenav() {
|
||||
$("#sidenav").toggle("fast");
|
||||
}
|
||||
</script>
|
||||
<!-- END: /topnav-incl.html -->
|
||||
</div>
|
||||
|
||||
<div id="sidenav">
|
||||
<!-- START: sidenav-incl.html active:#sidenav-inline-data -->
|
||||
<script>
|
||||
// Load local sidenav content, and mark current page active.
|
||||
$("#sidenav").load("sidenav-incl.html", function() {
|
||||
$("#sidenav-inline-data").addClass("active");
|
||||
});
|
||||
</script>
|
||||
<!-- side navigation bar contents -->
|
||||
<ul>
|
||||
<li id="sidenav-index"><a href="./">Introduction</a></li>
|
||||
<li id="sidenav-about-disasm"><a href="about-disasm.html">About Disassembly</a></li>
|
||||
<li id="sidenav-using-sourcegen"><a href="using-sourcegen.html">Using SourceGen</a></li>
|
||||
<ul>
|
||||
<li id="sidenav-moving-around"><a href="moving-around.html">Moving Around</a></li>
|
||||
<li id="sidenav-simple-edits"><a href="simple-edits.html">Simple Edits</a></li>
|
||||
<li id="sidenav-labels-symbols"><a href="labels-symbols.html">Labels & Symbols</a></li>
|
||||
<li id="sidenav-editing-data"><a href="editing-data.html">Editing Data Operands</a></li>
|
||||
<li id="sidenav-generating-code"><a href="generating-code.html">Generating Code</a></li>
|
||||
</ul>
|
||||
<li id="sidenav-digging-deeper"><a href="digging-deeper.html">Digging Deeper</a></li>
|
||||
<ul>
|
||||
<li id="sidenav-string-formatting"><a href="string-formatting.html">String Formatting</a></li>
|
||||
<li id="sidenav-local-variables"><a href="local-variables.html">Local Variables</a></li>
|
||||
<li id="sidenav-inline-data" class="active"><a href="inline-data.html">Inline Data</a></li>
|
||||
<li id="sidenav-odds-ends"><a href="odds-ends.html">Odds & Ends</a></li>
|
||||
</ul>
|
||||
<li id="sidenav-advanced-topics"><a href="advanced-topics.html">Advanced Topics</a></li>
|
||||
<ul>
|
||||
<li id="sidenav-address-tables"><a href="address-tables.html">Address Tables</a></li>
|
||||
<li id="sidenav-extension-scripts"><a href="extension-scripts.html">Extension Scripts</a></li>
|
||||
<li id="sidenav-visualizations"><a href="visualizations.html">Visualizations</a></li>
|
||||
</ul>
|
||||
</ul>
|
||||
<!-- END: sidenav-incl.html -->
|
||||
</div>
|
||||
|
||||
@@ -122,13 +162,21 @@
|
||||
</div> <!-- #main -->
|
||||
|
||||
<div id="prevnext">
|
||||
<a href="#" class="btn-previous">« Previous</a>
|
||||
<a href="#" class="btn-next">Next »</a>
|
||||
<a href="local-variables.html" class="btn-previous">« Previous</a>
|
||||
<a href="odds-ends.html" class="btn-next">Next »</a>
|
||||
</div>
|
||||
|
||||
<div id="footer">
|
||||
<!-- START: /footer-incl.html -->
|
||||
<script>$("#footer").load("/footer-incl.html");</script>
|
||||
<hr/>
|
||||
<p>Copyright 2021 faddenSoft</p>
|
||||
<!-- <p id="screen-size"></p>
|
||||
<script>
|
||||
var w = window.innerWidth;
|
||||
var h = window.innerHeight;
|
||||
var x = document.getElementById("screen-size");
|
||||
x.innerHTML = "DEBUG: initial window size " + w + "x" + h;
|
||||
</script> -->
|
||||
<!-- END: /footer-incl.html -->
|
||||
</div>
|
||||
|
||||
|
@@ -16,29 +16,69 @@
|
||||
|
||||
<div id="masthead">
|
||||
<!-- START: /masthead-incl.html -->
|
||||
<script>$("#masthead").load("/masthead-incl.html");</script>
|
||||
<!--<div class="masthead-title" style="background-image: url('images/screenshot-mainwin.png');">-->
|
||||
<div class="masthead-title">
|
||||
6502bench
|
||||
</div>
|
||||
<!-- END: /masthead-incl.html -->
|
||||
</div>
|
||||
|
||||
<div id="topnav">
|
||||
<!-- START: /topnav-incl.html active:#topnav-sgtutorial -->
|
||||
<script>
|
||||
// Load global topnav content, and mark current page active.
|
||||
$("#topnav").load("/topnav-incl.html", function() {
|
||||
$("#topnav-sgtutorial").addClass("active");
|
||||
});
|
||||
</script>
|
||||
<!-- top navigation bar contents -->
|
||||
<nav>
|
||||
<a id="topnav-home" href="/">HOME</a>
|
||||
<a id="topnav-sgtutorial" class="active" href="/sgtutorial">SourceGen Tutorial</a>
|
||||
<a id="topnav-menuicon" href="javascript:void(0);" class="icon" onclick="toggleSidenav()">
|
||||
<i class="fa fa-bars"></i>
|
||||
</a>
|
||||
</nav>
|
||||
<script>
|
||||
// If page has no sidenav, don't show the sidenav toggle button.
|
||||
if (document.getElementById("sidenav") == undefined) {
|
||||
$("#topnav-menuicon").hide();
|
||||
}
|
||||
|
||||
// Sidenav toggle function.
|
||||
//
|
||||
// Use a jQuery function to toggle the sidenav bar. The initial state
|
||||
// is undefined / inherited, so it will pop in and out as the screen
|
||||
// resizes around the "large" breakpoint.
|
||||
function toggleSidenav() {
|
||||
$("#sidenav").toggle("fast");
|
||||
}
|
||||
</script>
|
||||
<!-- END: /topnav-incl.html -->
|
||||
</div>
|
||||
|
||||
<div id="sidenav">
|
||||
<!-- START: sidenav-incl.html active:#sidenav-labels-symbols -->
|
||||
<script>
|
||||
// Load local sidenav content, and mark current page active.
|
||||
$("#sidenav").load("sidenav-incl.html", function() {
|
||||
$("#sidenav-labels-symbols").addClass("active");
|
||||
});
|
||||
</script>
|
||||
<!-- side navigation bar contents -->
|
||||
<ul>
|
||||
<li id="sidenav-index"><a href="./">Introduction</a></li>
|
||||
<li id="sidenav-about-disasm"><a href="about-disasm.html">About Disassembly</a></li>
|
||||
<li id="sidenav-using-sourcegen"><a href="using-sourcegen.html">Using SourceGen</a></li>
|
||||
<ul>
|
||||
<li id="sidenav-moving-around"><a href="moving-around.html">Moving Around</a></li>
|
||||
<li id="sidenav-simple-edits"><a href="simple-edits.html">Simple Edits</a></li>
|
||||
<li id="sidenav-labels-symbols" class="active"><a href="labels-symbols.html">Labels & Symbols</a></li>
|
||||
<li id="sidenav-editing-data"><a href="editing-data.html">Editing Data Operands</a></li>
|
||||
<li id="sidenav-generating-code"><a href="generating-code.html">Generating Code</a></li>
|
||||
</ul>
|
||||
<li id="sidenav-digging-deeper"><a href="digging-deeper.html">Digging Deeper</a></li>
|
||||
<ul>
|
||||
<li id="sidenav-string-formatting"><a href="string-formatting.html">String Formatting</a></li>
|
||||
<li id="sidenav-local-variables"><a href="local-variables.html">Local Variables</a></li>
|
||||
<li id="sidenav-inline-data"><a href="inline-data.html">Inline Data</a></li>
|
||||
<li id="sidenav-odds-ends"><a href="odds-ends.html">Odds & Ends</a></li>
|
||||
</ul>
|
||||
<li id="sidenav-advanced-topics"><a href="advanced-topics.html">Advanced Topics</a></li>
|
||||
<ul>
|
||||
<li id="sidenav-address-tables"><a href="address-tables.html">Address Tables</a></li>
|
||||
<li id="sidenav-extension-scripts"><a href="extension-scripts.html">Extension Scripts</a></li>
|
||||
<li id="sidenav-visualizations"><a href="visualizations.html">Visualizations</a></li>
|
||||
</ul>
|
||||
</ul>
|
||||
<!-- END: sidenav-incl.html -->
|
||||
</div>
|
||||
|
||||
@@ -338,13 +378,21 @@
|
||||
</div> <!-- #main -->
|
||||
|
||||
<div id="prevnext">
|
||||
<a href="#" class="btn-previous">« Previous</a>
|
||||
<a href="#" class="btn-next">Next »</a>
|
||||
<a href="simple-edits.html" class="btn-previous">« Previous</a>
|
||||
<a href="editing-data.html" class="btn-next">Next »</a>
|
||||
</div>
|
||||
|
||||
<div id="footer">
|
||||
<!-- START: /footer-incl.html -->
|
||||
<script>$("#footer").load("/footer-incl.html");</script>
|
||||
<hr/>
|
||||
<p>Copyright 2021 faddenSoft</p>
|
||||
<!-- <p id="screen-size"></p>
|
||||
<script>
|
||||
var w = window.innerWidth;
|
||||
var h = window.innerHeight;
|
||||
var x = document.getElementById("screen-size");
|
||||
x.innerHTML = "DEBUG: initial window size " + w + "x" + h;
|
||||
</script> -->
|
||||
<!-- END: /footer-incl.html -->
|
||||
</div>
|
||||
|
||||
|
@@ -16,29 +16,69 @@
|
||||
|
||||
<div id="masthead">
|
||||
<!-- START: /masthead-incl.html -->
|
||||
<script>$("#masthead").load("/masthead-incl.html");</script>
|
||||
<!--<div class="masthead-title" style="background-image: url('images/screenshot-mainwin.png');">-->
|
||||
<div class="masthead-title">
|
||||
6502bench
|
||||
</div>
|
||||
<!-- END: /masthead-incl.html -->
|
||||
</div>
|
||||
|
||||
<div id="topnav">
|
||||
<!-- START: /topnav-incl.html active:#topnav-sgtutorial -->
|
||||
<script>
|
||||
// Load global topnav content, and mark current page active.
|
||||
$("#topnav").load("/topnav-incl.html", function() {
|
||||
$("#topnav-sgtutorial").addClass("active");
|
||||
});
|
||||
</script>
|
||||
<!-- top navigation bar contents -->
|
||||
<nav>
|
||||
<a id="topnav-home" href="/">HOME</a>
|
||||
<a id="topnav-sgtutorial" class="active" href="/sgtutorial">SourceGen Tutorial</a>
|
||||
<a id="topnav-menuicon" href="javascript:void(0);" class="icon" onclick="toggleSidenav()">
|
||||
<i class="fa fa-bars"></i>
|
||||
</a>
|
||||
</nav>
|
||||
<script>
|
||||
// If page has no sidenav, don't show the sidenav toggle button.
|
||||
if (document.getElementById("sidenav") == undefined) {
|
||||
$("#topnav-menuicon").hide();
|
||||
}
|
||||
|
||||
// Sidenav toggle function.
|
||||
//
|
||||
// Use a jQuery function to toggle the sidenav bar. The initial state
|
||||
// is undefined / inherited, so it will pop in and out as the screen
|
||||
// resizes around the "large" breakpoint.
|
||||
function toggleSidenav() {
|
||||
$("#sidenav").toggle("fast");
|
||||
}
|
||||
</script>
|
||||
<!-- END: /topnav-incl.html -->
|
||||
</div>
|
||||
|
||||
<div id="sidenav">
|
||||
<!-- START: sidenav-incl.html active:#sidenav-local-variables -->
|
||||
<script>
|
||||
// Load local sidenav content, and mark current page active.
|
||||
$("#sidenav").load("sidenav-incl.html", function() {
|
||||
$("#sidenav-local-variables").addClass("active");
|
||||
});
|
||||
</script>
|
||||
<!-- side navigation bar contents -->
|
||||
<ul>
|
||||
<li id="sidenav-index"><a href="./">Introduction</a></li>
|
||||
<li id="sidenav-about-disasm"><a href="about-disasm.html">About Disassembly</a></li>
|
||||
<li id="sidenav-using-sourcegen"><a href="using-sourcegen.html">Using SourceGen</a></li>
|
||||
<ul>
|
||||
<li id="sidenav-moving-around"><a href="moving-around.html">Moving Around</a></li>
|
||||
<li id="sidenav-simple-edits"><a href="simple-edits.html">Simple Edits</a></li>
|
||||
<li id="sidenav-labels-symbols"><a href="labels-symbols.html">Labels & Symbols</a></li>
|
||||
<li id="sidenav-editing-data"><a href="editing-data.html">Editing Data Operands</a></li>
|
||||
<li id="sidenav-generating-code"><a href="generating-code.html">Generating Code</a></li>
|
||||
</ul>
|
||||
<li id="sidenav-digging-deeper"><a href="digging-deeper.html">Digging Deeper</a></li>
|
||||
<ul>
|
||||
<li id="sidenav-string-formatting"><a href="string-formatting.html">String Formatting</a></li>
|
||||
<li id="sidenav-local-variables" class="active"><a href="local-variables.html">Local Variables</a></li>
|
||||
<li id="sidenav-inline-data"><a href="inline-data.html">Inline Data</a></li>
|
||||
<li id="sidenav-odds-ends"><a href="odds-ends.html">Odds & Ends</a></li>
|
||||
</ul>
|
||||
<li id="sidenav-advanced-topics"><a href="advanced-topics.html">Advanced Topics</a></li>
|
||||
<ul>
|
||||
<li id="sidenav-address-tables"><a href="address-tables.html">Address Tables</a></li>
|
||||
<li id="sidenav-extension-scripts"><a href="extension-scripts.html">Extension Scripts</a></li>
|
||||
<li id="sidenav-visualizations"><a href="visualizations.html">Visualizations</a></li>
|
||||
</ul>
|
||||
</ul>
|
||||
<!-- END: sidenav-incl.html -->
|
||||
</div>
|
||||
|
||||
@@ -256,13 +296,21 @@
|
||||
</div> <!-- #main -->
|
||||
|
||||
<div id="prevnext">
|
||||
<a href="#" class="btn-previous">« Previous</a>
|
||||
<a href="#" class="btn-next">Next »</a>
|
||||
<a href="string-formatting.html" class="btn-previous">« Previous</a>
|
||||
<a href="inline-data.html" class="btn-next">Next »</a>
|
||||
</div>
|
||||
|
||||
<div id="footer">
|
||||
<!-- START: /footer-incl.html -->
|
||||
<script>$("#footer").load("/footer-incl.html");</script>
|
||||
<hr/>
|
||||
<p>Copyright 2021 faddenSoft</p>
|
||||
<!-- <p id="screen-size"></p>
|
||||
<script>
|
||||
var w = window.innerWidth;
|
||||
var h = window.innerHeight;
|
||||
var x = document.getElementById("screen-size");
|
||||
x.innerHTML = "DEBUG: initial window size " + w + "x" + h;
|
||||
</script> -->
|
||||
<!-- END: /footer-incl.html -->
|
||||
</div>
|
||||
|
||||
|
@@ -16,29 +16,69 @@
|
||||
|
||||
<div id="masthead">
|
||||
<!-- START: /masthead-incl.html -->
|
||||
<script>$("#masthead").load("/masthead-incl.html");</script>
|
||||
<!--<div class="masthead-title" style="background-image: url('images/screenshot-mainwin.png');">-->
|
||||
<div class="masthead-title">
|
||||
6502bench
|
||||
</div>
|
||||
<!-- END: /masthead-incl.html -->
|
||||
</div>
|
||||
|
||||
<div id="topnav">
|
||||
<!-- START: /topnav-incl.html active:#topnav-sgtutorial -->
|
||||
<script>
|
||||
// Load global topnav content, and mark current page active.
|
||||
$("#topnav").load("/topnav-incl.html", function() {
|
||||
$("#topnav-sgtutorial").addClass("active");
|
||||
});
|
||||
</script>
|
||||
<!-- top navigation bar contents -->
|
||||
<nav>
|
||||
<a id="topnav-home" href="/">HOME</a>
|
||||
<a id="topnav-sgtutorial" class="active" href="/sgtutorial">SourceGen Tutorial</a>
|
||||
<a id="topnav-menuicon" href="javascript:void(0);" class="icon" onclick="toggleSidenav()">
|
||||
<i class="fa fa-bars"></i>
|
||||
</a>
|
||||
</nav>
|
||||
<script>
|
||||
// If page has no sidenav, don't show the sidenav toggle button.
|
||||
if (document.getElementById("sidenav") == undefined) {
|
||||
$("#topnav-menuicon").hide();
|
||||
}
|
||||
|
||||
// Sidenav toggle function.
|
||||
//
|
||||
// Use a jQuery function to toggle the sidenav bar. The initial state
|
||||
// is undefined / inherited, so it will pop in and out as the screen
|
||||
// resizes around the "large" breakpoint.
|
||||
function toggleSidenav() {
|
||||
$("#sidenav").toggle("fast");
|
||||
}
|
||||
</script>
|
||||
<!-- END: /topnav-incl.html -->
|
||||
</div>
|
||||
|
||||
<div id="sidenav">
|
||||
<!-- START: sidenav-incl.html active:#sidenav-starting-project -->
|
||||
<script>
|
||||
// Load local sidenav content, and mark current page active.
|
||||
$("#sidenav").load("sidenav-incl.html", function() {
|
||||
$("#sidenav-moving-around").addClass("active");
|
||||
});
|
||||
</script>
|
||||
<!-- side navigation bar contents -->
|
||||
<ul>
|
||||
<li id="sidenav-index"><a href="./">Introduction</a></li>
|
||||
<li id="sidenav-about-disasm"><a href="about-disasm.html">About Disassembly</a></li>
|
||||
<li id="sidenav-using-sourcegen"><a href="using-sourcegen.html">Using SourceGen</a></li>
|
||||
<ul>
|
||||
<li id="sidenav-moving-around"><a href="moving-around.html">Moving Around</a></li>
|
||||
<li id="sidenav-simple-edits"><a href="simple-edits.html">Simple Edits</a></li>
|
||||
<li id="sidenav-labels-symbols"><a href="labels-symbols.html">Labels & Symbols</a></li>
|
||||
<li id="sidenav-editing-data"><a href="editing-data.html">Editing Data Operands</a></li>
|
||||
<li id="sidenav-generating-code"><a href="generating-code.html">Generating Code</a></li>
|
||||
</ul>
|
||||
<li id="sidenav-digging-deeper"><a href="digging-deeper.html">Digging Deeper</a></li>
|
||||
<ul>
|
||||
<li id="sidenav-string-formatting"><a href="string-formatting.html">String Formatting</a></li>
|
||||
<li id="sidenav-local-variables"><a href="local-variables.html">Local Variables</a></li>
|
||||
<li id="sidenav-inline-data"><a href="inline-data.html">Inline Data</a></li>
|
||||
<li id="sidenav-odds-ends"><a href="odds-ends.html">Odds & Ends</a></li>
|
||||
</ul>
|
||||
<li id="sidenav-advanced-topics"><a href="advanced-topics.html">Advanced Topics</a></li>
|
||||
<ul>
|
||||
<li id="sidenav-address-tables"><a href="address-tables.html">Address Tables</a></li>
|
||||
<li id="sidenav-extension-scripts"><a href="extension-scripts.html">Extension Scripts</a></li>
|
||||
<li id="sidenav-visualizations"><a href="visualizations.html">Visualizations</a></li>
|
||||
</ul>
|
||||
</ul>
|
||||
<!-- END: sidenav-incl.html -->
|
||||
</div>
|
||||
|
||||
@@ -187,13 +227,21 @@
|
||||
</div> <!-- #main -->
|
||||
|
||||
<div id="prevnext">
|
||||
<a href="#" class="btn-previous">« Previous</a>
|
||||
<a href="#" class="btn-next">Next »</a>
|
||||
<a href="using-sourcegen.html" class="btn-previous">« Previous</a>
|
||||
<a href="simple-edits.html" class="btn-next">Next »</a>
|
||||
</div>
|
||||
|
||||
<div id="footer">
|
||||
<!-- START: /footer-incl.html -->
|
||||
<script>$("#footer").load("/footer-incl.html");</script>
|
||||
<hr/>
|
||||
<p>Copyright 2021 faddenSoft</p>
|
||||
<!-- <p id="screen-size"></p>
|
||||
<script>
|
||||
var w = window.innerWidth;
|
||||
var h = window.innerHeight;
|
||||
var x = document.getElementById("screen-size");
|
||||
x.innerHTML = "DEBUG: initial window size " + w + "x" + h;
|
||||
</script> -->
|
||||
<!-- END: /footer-incl.html -->
|
||||
</div>
|
||||
|
||||
|
@@ -16,29 +16,69 @@
|
||||
|
||||
<div id="masthead">
|
||||
<!-- START: /masthead-incl.html -->
|
||||
<script>$("#masthead").load("/masthead-incl.html");</script>
|
||||
<!--<div class="masthead-title" style="background-image: url('images/screenshot-mainwin.png');">-->
|
||||
<div class="masthead-title">
|
||||
6502bench
|
||||
</div>
|
||||
<!-- END: /masthead-incl.html -->
|
||||
</div>
|
||||
|
||||
<div id="topnav">
|
||||
<!-- START: /topnav-incl.html active:#topnav-sgtutorial -->
|
||||
<script>
|
||||
// Load global topnav content, and mark current page active.
|
||||
$("#topnav").load("/topnav-incl.html", function() {
|
||||
$("#topnav-sgtutorial").addClass("active");
|
||||
});
|
||||
</script>
|
||||
<!-- top navigation bar contents -->
|
||||
<nav>
|
||||
<a id="topnav-home" href="/">HOME</a>
|
||||
<a id="topnav-sgtutorial" class="active" href="/sgtutorial">SourceGen Tutorial</a>
|
||||
<a id="topnav-menuicon" href="javascript:void(0);" class="icon" onclick="toggleSidenav()">
|
||||
<i class="fa fa-bars"></i>
|
||||
</a>
|
||||
</nav>
|
||||
<script>
|
||||
// If page has no sidenav, don't show the sidenav toggle button.
|
||||
if (document.getElementById("sidenav") == undefined) {
|
||||
$("#topnav-menuicon").hide();
|
||||
}
|
||||
|
||||
// Sidenav toggle function.
|
||||
//
|
||||
// Use a jQuery function to toggle the sidenav bar. The initial state
|
||||
// is undefined / inherited, so it will pop in and out as the screen
|
||||
// resizes around the "large" breakpoint.
|
||||
function toggleSidenav() {
|
||||
$("#sidenav").toggle("fast");
|
||||
}
|
||||
</script>
|
||||
<!-- END: /topnav-incl.html -->
|
||||
</div>
|
||||
|
||||
<div id="sidenav">
|
||||
<!-- START: sidenav-incl.html active:#sidenav-odds-ends -->
|
||||
<script>
|
||||
// Load local sidenav content, and mark current page active.
|
||||
$("#sidenav").load("sidenav-incl.html", function() {
|
||||
$("#sidenav-odds-ends").addClass("active");
|
||||
});
|
||||
</script>
|
||||
<!-- side navigation bar contents -->
|
||||
<ul>
|
||||
<li id="sidenav-index"><a href="./">Introduction</a></li>
|
||||
<li id="sidenav-about-disasm"><a href="about-disasm.html">About Disassembly</a></li>
|
||||
<li id="sidenav-using-sourcegen"><a href="using-sourcegen.html">Using SourceGen</a></li>
|
||||
<ul>
|
||||
<li id="sidenav-moving-around"><a href="moving-around.html">Moving Around</a></li>
|
||||
<li id="sidenav-simple-edits"><a href="simple-edits.html">Simple Edits</a></li>
|
||||
<li id="sidenav-labels-symbols"><a href="labels-symbols.html">Labels & Symbols</a></li>
|
||||
<li id="sidenav-editing-data"><a href="editing-data.html">Editing Data Operands</a></li>
|
||||
<li id="sidenav-generating-code"><a href="generating-code.html">Generating Code</a></li>
|
||||
</ul>
|
||||
<li id="sidenav-digging-deeper"><a href="digging-deeper.html">Digging Deeper</a></li>
|
||||
<ul>
|
||||
<li id="sidenav-string-formatting"><a href="string-formatting.html">String Formatting</a></li>
|
||||
<li id="sidenav-local-variables"><a href="local-variables.html">Local Variables</a></li>
|
||||
<li id="sidenav-inline-data"><a href="inline-data.html">Inline Data</a></li>
|
||||
<li id="sidenav-odds-ends" class="active"><a href="odds-ends.html">Odds & Ends</a></li>
|
||||
</ul>
|
||||
<li id="sidenav-advanced-topics"><a href="advanced-topics.html">Advanced Topics</a></li>
|
||||
<ul>
|
||||
<li id="sidenav-address-tables"><a href="address-tables.html">Address Tables</a></li>
|
||||
<li id="sidenav-extension-scripts"><a href="extension-scripts.html">Extension Scripts</a></li>
|
||||
<li id="sidenav-visualizations"><a href="visualizations.html">Visualizations</a></li>
|
||||
</ul>
|
||||
</ul>
|
||||
<!-- END: sidenav-incl.html -->
|
||||
</div>
|
||||
|
||||
@@ -183,13 +223,21 @@
|
||||
</div> <!-- #main -->
|
||||
|
||||
<div id="prevnext">
|
||||
<a href="#" class="btn-previous">« Previous</a>
|
||||
<a href="#" class="btn-next">Next »</a>
|
||||
<a href="inline-data.html" class="btn-previous">« Previous</a>
|
||||
<a href="advanced-topics.html" class="btn-next">Next »</a>
|
||||
</div>
|
||||
|
||||
<div id="footer">
|
||||
<!-- START: /footer-incl.html -->
|
||||
<script>$("#footer").load("/footer-incl.html");</script>
|
||||
<hr/>
|
||||
<p>Copyright 2021 faddenSoft</p>
|
||||
<!-- <p id="screen-size"></p>
|
||||
<script>
|
||||
var w = window.innerWidth;
|
||||
var h = window.innerHeight;
|
||||
var x = document.getElementById("screen-size");
|
||||
x.innerHTML = "DEBUG: initial window size " + w + "x" + h;
|
||||
</script> -->
|
||||
<!-- END: /footer-incl.html -->
|
||||
</div>
|
||||
|
||||
|
@@ -16,29 +16,69 @@
|
||||
|
||||
<div id="masthead">
|
||||
<!-- START: /masthead-incl.html -->
|
||||
<script>$("#masthead").load("/masthead-incl.html");</script>
|
||||
<!--<div class="masthead-title" style="background-image: url('images/screenshot-mainwin.png');">-->
|
||||
<div class="masthead-title">
|
||||
6502bench
|
||||
</div>
|
||||
<!-- END: /masthead-incl.html -->
|
||||
</div>
|
||||
|
||||
<div id="topnav">
|
||||
<!-- START: /topnav-incl.html active:#topnav-sgtutorial -->
|
||||
<script>
|
||||
// Load global topnav content, and mark current page active.
|
||||
$("#topnav").load("/topnav-incl.html", function() {
|
||||
$("#topnav-sgtutorial").addClass("active");
|
||||
});
|
||||
</script>
|
||||
<!-- top navigation bar contents -->
|
||||
<nav>
|
||||
<a id="topnav-home" href="/">HOME</a>
|
||||
<a id="topnav-sgtutorial" class="active" href="/sgtutorial">SourceGen Tutorial</a>
|
||||
<a id="topnav-menuicon" href="javascript:void(0);" class="icon" onclick="toggleSidenav()">
|
||||
<i class="fa fa-bars"></i>
|
||||
</a>
|
||||
</nav>
|
||||
<script>
|
||||
// If page has no sidenav, don't show the sidenav toggle button.
|
||||
if (document.getElementById("sidenav") == undefined) {
|
||||
$("#topnav-menuicon").hide();
|
||||
}
|
||||
|
||||
// Sidenav toggle function.
|
||||
//
|
||||
// Use a jQuery function to toggle the sidenav bar. The initial state
|
||||
// is undefined / inherited, so it will pop in and out as the screen
|
||||
// resizes around the "large" breakpoint.
|
||||
function toggleSidenav() {
|
||||
$("#sidenav").toggle("fast");
|
||||
}
|
||||
</script>
|
||||
<!-- END: /topnav-incl.html -->
|
||||
</div>
|
||||
|
||||
<div id="sidenav">
|
||||
<!-- START: sidenav-incl.html active:#sidenav-simple-edits -->
|
||||
<script>
|
||||
// Load local sidenav content, and mark current page active.
|
||||
$("#sidenav").load("sidenav-incl.html", function() {
|
||||
$("#sidenav-simple-edits").addClass("active");
|
||||
});
|
||||
</script>
|
||||
<!-- side navigation bar contents -->
|
||||
<ul>
|
||||
<li id="sidenav-index"><a href="./">Introduction</a></li>
|
||||
<li id="sidenav-about-disasm"><a href="about-disasm.html">About Disassembly</a></li>
|
||||
<li id="sidenav-using-sourcegen"><a href="using-sourcegen.html">Using SourceGen</a></li>
|
||||
<ul>
|
||||
<li id="sidenav-moving-around"><a href="moving-around.html">Moving Around</a></li>
|
||||
<li id="sidenav-simple-edits" class="active"><a href="simple-edits.html">Simple Edits</a></li>
|
||||
<li id="sidenav-labels-symbols"><a href="labels-symbols.html">Labels & Symbols</a></li>
|
||||
<li id="sidenav-editing-data"><a href="editing-data.html">Editing Data Operands</a></li>
|
||||
<li id="sidenav-generating-code"><a href="generating-code.html">Generating Code</a></li>
|
||||
</ul>
|
||||
<li id="sidenav-digging-deeper"><a href="digging-deeper.html">Digging Deeper</a></li>
|
||||
<ul>
|
||||
<li id="sidenav-string-formatting"><a href="string-formatting.html">String Formatting</a></li>
|
||||
<li id="sidenav-local-variables"><a href="local-variables.html">Local Variables</a></li>
|
||||
<li id="sidenav-inline-data"><a href="inline-data.html">Inline Data</a></li>
|
||||
<li id="sidenav-odds-ends"><a href="odds-ends.html">Odds & Ends</a></li>
|
||||
</ul>
|
||||
<li id="sidenav-advanced-topics"><a href="advanced-topics.html">Advanced Topics</a></li>
|
||||
<ul>
|
||||
<li id="sidenav-address-tables"><a href="address-tables.html">Address Tables</a></li>
|
||||
<li id="sidenav-extension-scripts"><a href="extension-scripts.html">Extension Scripts</a></li>
|
||||
<li id="sidenav-visualizations"><a href="visualizations.html">Visualizations</a></li>
|
||||
</ul>
|
||||
</ul>
|
||||
<!-- END: sidenav-incl.html -->
|
||||
</div>
|
||||
|
||||
@@ -190,13 +230,21 @@
|
||||
</div> <!-- #main -->
|
||||
|
||||
<div id="prevnext">
|
||||
<a href="#" class="btn-previous">« Previous</a>
|
||||
<a href="#" class="btn-next">Next »</a>
|
||||
<a href="moving-around.html" class="btn-previous">« Previous</a>
|
||||
<a href="labels-symbols.html" class="btn-next">Next »</a>
|
||||
</div>
|
||||
|
||||
<div id="footer">
|
||||
<!-- START: /footer-incl.html -->
|
||||
<script>$("#footer").load("/footer-incl.html");</script>
|
||||
<hr/>
|
||||
<p>Copyright 2021 faddenSoft</p>
|
||||
<!-- <p id="screen-size"></p>
|
||||
<script>
|
||||
var w = window.innerWidth;
|
||||
var h = window.innerHeight;
|
||||
var x = document.getElementById("screen-size");
|
||||
x.innerHTML = "DEBUG: initial window size " + w + "x" + h;
|
||||
</script> -->
|
||||
<!-- END: /footer-incl.html -->
|
||||
</div>
|
||||
|
||||
|
@@ -16,29 +16,69 @@
|
||||
|
||||
<div id="masthead">
|
||||
<!-- START: /masthead-incl.html -->
|
||||
<script>$("#masthead").load("/masthead-incl.html");</script>
|
||||
<!--<div class="masthead-title" style="background-image: url('images/screenshot-mainwin.png');">-->
|
||||
<div class="masthead-title">
|
||||
6502bench
|
||||
</div>
|
||||
<!-- END: /masthead-incl.html -->
|
||||
</div>
|
||||
|
||||
<div id="topnav">
|
||||
<!-- START: /topnav-incl.html active:#topnav-sgtutorial -->
|
||||
<script>
|
||||
// Load global topnav content, and mark current page active.
|
||||
$("#topnav").load("/topnav-incl.html", function() {
|
||||
$("#topnav-sgtutorial").addClass("active");
|
||||
});
|
||||
</script>
|
||||
<!-- top navigation bar contents -->
|
||||
<nav>
|
||||
<a id="topnav-home" href="/">HOME</a>
|
||||
<a id="topnav-sgtutorial" class="active" href="/sgtutorial">SourceGen Tutorial</a>
|
||||
<a id="topnav-menuicon" href="javascript:void(0);" class="icon" onclick="toggleSidenav()">
|
||||
<i class="fa fa-bars"></i>
|
||||
</a>
|
||||
</nav>
|
||||
<script>
|
||||
// If page has no sidenav, don't show the sidenav toggle button.
|
||||
if (document.getElementById("sidenav") == undefined) {
|
||||
$("#topnav-menuicon").hide();
|
||||
}
|
||||
|
||||
// Sidenav toggle function.
|
||||
//
|
||||
// Use a jQuery function to toggle the sidenav bar. The initial state
|
||||
// is undefined / inherited, so it will pop in and out as the screen
|
||||
// resizes around the "large" breakpoint.
|
||||
function toggleSidenav() {
|
||||
$("#sidenav").toggle("fast");
|
||||
}
|
||||
</script>
|
||||
<!-- END: /topnav-incl.html -->
|
||||
</div>
|
||||
|
||||
<div id="sidenav">
|
||||
<!-- START: sidenav-incl.html active:#sidenav-string-formatting -->
|
||||
<script>
|
||||
// Load local sidenav content, and mark current page active.
|
||||
$("#sidenav").load("sidenav-incl.html", function() {
|
||||
$("#sidenav-string-formatting").addClass("active");
|
||||
});
|
||||
</script>
|
||||
<!-- side navigation bar contents -->
|
||||
<ul>
|
||||
<li id="sidenav-index"><a href="./">Introduction</a></li>
|
||||
<li id="sidenav-about-disasm"><a href="about-disasm.html">About Disassembly</a></li>
|
||||
<li id="sidenav-using-sourcegen"><a href="using-sourcegen.html">Using SourceGen</a></li>
|
||||
<ul>
|
||||
<li id="sidenav-moving-around"><a href="moving-around.html">Moving Around</a></li>
|
||||
<li id="sidenav-simple-edits"><a href="simple-edits.html">Simple Edits</a></li>
|
||||
<li id="sidenav-labels-symbols"><a href="labels-symbols.html">Labels & Symbols</a></li>
|
||||
<li id="sidenav-editing-data"><a href="editing-data.html">Editing Data Operands</a></li>
|
||||
<li id="sidenav-generating-code"><a href="generating-code.html">Generating Code</a></li>
|
||||
</ul>
|
||||
<li id="sidenav-digging-deeper"><a href="digging-deeper.html">Digging Deeper</a></li>
|
||||
<ul>
|
||||
<li id="sidenav-string-formatting" class="active"><a href="string-formatting.html">String Formatting</a></li>
|
||||
<li id="sidenav-local-variables"><a href="local-variables.html">Local Variables</a></li>
|
||||
<li id="sidenav-inline-data"><a href="inline-data.html">Inline Data</a></li>
|
||||
<li id="sidenav-odds-ends"><a href="odds-ends.html">Odds & Ends</a></li>
|
||||
</ul>
|
||||
<li id="sidenav-advanced-topics"><a href="advanced-topics.html">Advanced Topics</a></li>
|
||||
<ul>
|
||||
<li id="sidenav-address-tables"><a href="address-tables.html">Address Tables</a></li>
|
||||
<li id="sidenav-extension-scripts"><a href="extension-scripts.html">Extension Scripts</a></li>
|
||||
<li id="sidenav-visualizations"><a href="visualizations.html">Visualizations</a></li>
|
||||
</ul>
|
||||
</ul>
|
||||
<!-- END: sidenav-incl.html -->
|
||||
</div>
|
||||
|
||||
@@ -107,13 +147,21 @@
|
||||
</div> <!-- #main -->
|
||||
|
||||
<div id="prevnext">
|
||||
<a href="#" class="btn-previous">« Previous</a>
|
||||
<a href="#" class="btn-next">Next »</a>
|
||||
<a href="digging-deeper.html" class="btn-previous">« Previous</a>
|
||||
<a href="local-variables.html" class="btn-next">Next »</a>
|
||||
</div>
|
||||
|
||||
<div id="footer">
|
||||
<!-- START: /footer-incl.html -->
|
||||
<script>$("#footer").load("/footer-incl.html");</script>
|
||||
<hr/>
|
||||
<p>Copyright 2021 faddenSoft</p>
|
||||
<!-- <p id="screen-size"></p>
|
||||
<script>
|
||||
var w = window.innerWidth;
|
||||
var h = window.innerHeight;
|
||||
var x = document.getElementById("screen-size");
|
||||
x.innerHTML = "DEBUG: initial window size " + w + "x" + h;
|
||||
</script> -->
|
||||
<!-- END: /footer-incl.html -->
|
||||
</div>
|
||||
|
||||
|
@@ -16,29 +16,69 @@
|
||||
|
||||
<div id="masthead">
|
||||
<!-- START: /masthead-incl.html -->
|
||||
<script>$("#masthead").load("/masthead-incl.html");</script>
|
||||
<!--<div class="masthead-title" style="background-image: url('images/screenshot-mainwin.png');">-->
|
||||
<div class="masthead-title">
|
||||
6502bench
|
||||
</div>
|
||||
<!-- END: /masthead-incl.html -->
|
||||
</div>
|
||||
|
||||
<div id="topnav">
|
||||
<!-- START: /topnav-incl.html active:#topnav-sgtutorial -->
|
||||
<script>
|
||||
// Load global topnav content, and mark current page active.
|
||||
$("#topnav").load("/topnav-incl.html", function() {
|
||||
$("#topnav-sgtutorial").addClass("active");
|
||||
});
|
||||
</script>
|
||||
<!-- top navigation bar contents -->
|
||||
<nav>
|
||||
<a id="topnav-home" href="/">HOME</a>
|
||||
<a id="topnav-sgtutorial" class="active" href="/sgtutorial">SourceGen Tutorial</a>
|
||||
<a id="topnav-menuicon" href="javascript:void(0);" class="icon" onclick="toggleSidenav()">
|
||||
<i class="fa fa-bars"></i>
|
||||
</a>
|
||||
</nav>
|
||||
<script>
|
||||
// If page has no sidenav, don't show the sidenav toggle button.
|
||||
if (document.getElementById("sidenav") == undefined) {
|
||||
$("#topnav-menuicon").hide();
|
||||
}
|
||||
|
||||
// Sidenav toggle function.
|
||||
//
|
||||
// Use a jQuery function to toggle the sidenav bar. The initial state
|
||||
// is undefined / inherited, so it will pop in and out as the screen
|
||||
// resizes around the "large" breakpoint.
|
||||
function toggleSidenav() {
|
||||
$("#sidenav").toggle("fast");
|
||||
}
|
||||
</script>
|
||||
<!-- END: /topnav-incl.html -->
|
||||
</div>
|
||||
|
||||
<div id="sidenav">
|
||||
<!-- START: sidenav-incl.html active:#sidenav-using-sourcegen -->
|
||||
<script>
|
||||
// Load local sidenav content, and mark current page active.
|
||||
$("#sidenav").load("sidenav-incl.html", function() {
|
||||
$("#sidenav-using-sourcegen").addClass("active");
|
||||
});
|
||||
</script>
|
||||
<!-- side navigation bar contents -->
|
||||
<ul>
|
||||
<li id="sidenav-index"><a href="./">Introduction</a></li>
|
||||
<li id="sidenav-about-disasm"><a href="about-disasm.html">About Disassembly</a></li>
|
||||
<li id="sidenav-using-sourcegen" class="active"><a href="using-sourcegen.html">Using SourceGen</a></li>
|
||||
<ul>
|
||||
<li id="sidenav-moving-around"><a href="moving-around.html">Moving Around</a></li>
|
||||
<li id="sidenav-simple-edits"><a href="simple-edits.html">Simple Edits</a></li>
|
||||
<li id="sidenav-labels-symbols"><a href="labels-symbols.html">Labels & Symbols</a></li>
|
||||
<li id="sidenav-editing-data"><a href="editing-data.html">Editing Data Operands</a></li>
|
||||
<li id="sidenav-generating-code"><a href="generating-code.html">Generating Code</a></li>
|
||||
</ul>
|
||||
<li id="sidenav-digging-deeper"><a href="digging-deeper.html">Digging Deeper</a></li>
|
||||
<ul>
|
||||
<li id="sidenav-string-formatting"><a href="string-formatting.html">String Formatting</a></li>
|
||||
<li id="sidenav-local-variables"><a href="local-variables.html">Local Variables</a></li>
|
||||
<li id="sidenav-inline-data"><a href="inline-data.html">Inline Data</a></li>
|
||||
<li id="sidenav-odds-ends"><a href="odds-ends.html">Odds & Ends</a></li>
|
||||
</ul>
|
||||
<li id="sidenav-advanced-topics"><a href="advanced-topics.html">Advanced Topics</a></li>
|
||||
<ul>
|
||||
<li id="sidenav-address-tables"><a href="address-tables.html">Address Tables</a></li>
|
||||
<li id="sidenav-extension-scripts"><a href="extension-scripts.html">Extension Scripts</a></li>
|
||||
<li id="sidenav-visualizations"><a href="visualizations.html">Visualizations</a></li>
|
||||
</ul>
|
||||
</ul>
|
||||
<!-- END: sidenav-incl.html -->
|
||||
</div>
|
||||
|
||||
@@ -160,13 +200,21 @@
|
||||
</div> <!-- #main -->
|
||||
|
||||
<div id="prevnext">
|
||||
<a href="#" class="btn-previous">« Previous</a>
|
||||
<a href="#" class="btn-next">Next »</a>
|
||||
<a href="about-disasm.html" class="btn-previous">« Previous</a>
|
||||
<a href="moving-around.html" class="btn-next">Next »</a>
|
||||
</div>
|
||||
|
||||
<div id="footer">
|
||||
<!-- START: /footer-incl.html -->
|
||||
<script>$("#footer").load("/footer-incl.html");</script>
|
||||
<hr/>
|
||||
<p>Copyright 2021 faddenSoft</p>
|
||||
<!-- <p id="screen-size"></p>
|
||||
<script>
|
||||
var w = window.innerWidth;
|
||||
var h = window.innerHeight;
|
||||
var x = document.getElementById("screen-size");
|
||||
x.innerHTML = "DEBUG: initial window size " + w + "x" + h;
|
||||
</script> -->
|
||||
<!-- END: /footer-incl.html -->
|
||||
</div>
|
||||
|
||||
|
@@ -16,29 +16,69 @@
|
||||
|
||||
<div id="masthead">
|
||||
<!-- START: /masthead-incl.html -->
|
||||
<script>$("#masthead").load("/masthead-incl.html");</script>
|
||||
<!--<div class="masthead-title" style="background-image: url('images/screenshot-mainwin.png');">-->
|
||||
<div class="masthead-title">
|
||||
6502bench
|
||||
</div>
|
||||
<!-- END: /masthead-incl.html -->
|
||||
</div>
|
||||
|
||||
<div id="topnav">
|
||||
<!-- START: /topnav-incl.html active:#topnav-sgtutorial -->
|
||||
<script>
|
||||
// Load global topnav content, and mark current page active.
|
||||
$("#topnav").load("/topnav-incl.html", function() {
|
||||
$("#topnav-sgtutorial").addClass("active");
|
||||
});
|
||||
</script>
|
||||
<!-- top navigation bar contents -->
|
||||
<nav>
|
||||
<a id="topnav-home" href="/">HOME</a>
|
||||
<a id="topnav-sgtutorial" class="active" href="/sgtutorial">SourceGen Tutorial</a>
|
||||
<a id="topnav-menuicon" href="javascript:void(0);" class="icon" onclick="toggleSidenav()">
|
||||
<i class="fa fa-bars"></i>
|
||||
</a>
|
||||
</nav>
|
||||
<script>
|
||||
// If page has no sidenav, don't show the sidenav toggle button.
|
||||
if (document.getElementById("sidenav") == undefined) {
|
||||
$("#topnav-menuicon").hide();
|
||||
}
|
||||
|
||||
// Sidenav toggle function.
|
||||
//
|
||||
// Use a jQuery function to toggle the sidenav bar. The initial state
|
||||
// is undefined / inherited, so it will pop in and out as the screen
|
||||
// resizes around the "large" breakpoint.
|
||||
function toggleSidenav() {
|
||||
$("#sidenav").toggle("fast");
|
||||
}
|
||||
</script>
|
||||
<!-- END: /topnav-incl.html -->
|
||||
</div>
|
||||
|
||||
<div id="sidenav">
|
||||
<!-- START: sidenav-incl.html active:#sidenav-visualizations -->
|
||||
<script>
|
||||
// Load local sidenav content, and mark current page active.
|
||||
$("#sidenav").load("sidenav-incl.html", function() {
|
||||
$("#sidenav-visualizations").addClass("active");
|
||||
});
|
||||
</script>
|
||||
<!-- side navigation bar contents -->
|
||||
<ul>
|
||||
<li id="sidenav-index"><a href="./">Introduction</a></li>
|
||||
<li id="sidenav-about-disasm"><a href="about-disasm.html">About Disassembly</a></li>
|
||||
<li id="sidenav-using-sourcegen"><a href="using-sourcegen.html">Using SourceGen</a></li>
|
||||
<ul>
|
||||
<li id="sidenav-moving-around"><a href="moving-around.html">Moving Around</a></li>
|
||||
<li id="sidenav-simple-edits"><a href="simple-edits.html">Simple Edits</a></li>
|
||||
<li id="sidenav-labels-symbols"><a href="labels-symbols.html">Labels & Symbols</a></li>
|
||||
<li id="sidenav-editing-data"><a href="editing-data.html">Editing Data Operands</a></li>
|
||||
<li id="sidenav-generating-code"><a href="generating-code.html">Generating Code</a></li>
|
||||
</ul>
|
||||
<li id="sidenav-digging-deeper"><a href="digging-deeper.html">Digging Deeper</a></li>
|
||||
<ul>
|
||||
<li id="sidenav-string-formatting"><a href="string-formatting.html">String Formatting</a></li>
|
||||
<li id="sidenav-local-variables"><a href="local-variables.html">Local Variables</a></li>
|
||||
<li id="sidenav-inline-data"><a href="inline-data.html">Inline Data</a></li>
|
||||
<li id="sidenav-odds-ends"><a href="odds-ends.html">Odds & Ends</a></li>
|
||||
</ul>
|
||||
<li id="sidenav-advanced-topics"><a href="advanced-topics.html">Advanced Topics</a></li>
|
||||
<ul>
|
||||
<li id="sidenav-address-tables"><a href="address-tables.html">Address Tables</a></li>
|
||||
<li id="sidenav-extension-scripts"><a href="extension-scripts.html">Extension Scripts</a></li>
|
||||
<li id="sidenav-visualizations" class="active"><a href="visualizations.html">Visualizations</a></li>
|
||||
</ul>
|
||||
</ul>
|
||||
<!-- END: sidenav-incl.html -->
|
||||
</div>
|
||||
|
||||
@@ -329,13 +369,20 @@
|
||||
</div> <!-- #main -->
|
||||
|
||||
<div id="prevnext">
|
||||
<a href="#" class="btn-previous">« Previous</a>
|
||||
<a href="#" class="btn-next">Next »</a>
|
||||
<a href="extension-scripts.html" class="btn-previous">« Previous</a>
|
||||
</div>
|
||||
|
||||
<div id="footer">
|
||||
<!-- START: /footer-incl.html -->
|
||||
<script>$("#footer").load("/footer-incl.html");</script>
|
||||
<hr/>
|
||||
<p>Copyright 2021 faddenSoft</p>
|
||||
<!-- <p id="screen-size"></p>
|
||||
<script>
|
||||
var w = window.innerWidth;
|
||||
var h = window.innerHeight;
|
||||
var x = document.getElementById("screen-size");
|
||||
x.innerHTML = "DEBUG: initial window size " + w + "x" + h;
|
||||
</script> -->
|
||||
<!-- END: /footer-incl.html -->
|
||||
</div>
|
||||
|
||||
|
Reference in New Issue
Block a user