mirror of
https://github.com/fadden/6502bench.git
synced 2024-11-29 10:50:28 +00:00
Add ${ROOT} substitution
Doesn't really affect the pages on the web, but it's easier to preview them in the filesystem when linked to "../main.css" rather than "/main.css". The common portion of the <head> section is now in a separate "include" file. Added some indentation to masthead/topnav/sidenav so it looks nicer in the merged source listing.
This commit is contained in:
parent
78eafa6100
commit
bc4326c5a4
@ -15,7 +15,7 @@
|
||||
#
|
||||
#
|
||||
# Run this from the top-level directory. Provide a list of all HTML files
|
||||
# on the command line.
|
||||
# on the command line, using relative paths.
|
||||
#
|
||||
# If the name of the file to include (specified on the START line) begins
|
||||
# with '/', the file will be loaded from the top-level directory, i.e. the
|
||||
@ -113,12 +113,25 @@ def copyFromIncl(inFileName, tag, activeId, outFile):
|
||||
# file is in same directory as input file
|
||||
inclFileName = os.path.join(os.path.dirname(inFileName), tag)
|
||||
|
||||
print("== replacing section with " + inclFileName)
|
||||
|
||||
try:
|
||||
with open(inclFileName, "r") as inFile:
|
||||
fileData = inFile.read()
|
||||
except IOError as err:
|
||||
raise LocalError(err)
|
||||
|
||||
# Create a relative path for ${ROOT}, which is defined as the directory
|
||||
# in which we're running.
|
||||
# TODO: make this work correctly for absolute paths?
|
||||
if inFileName[0] == '/':
|
||||
raise LocalError("Not a relative path: " + inFileName)
|
||||
tmpPair = os.path.split(inFileName)
|
||||
rootRel = ""
|
||||
while tmpPair[0]:
|
||||
rootRel += "../"
|
||||
tmpPair = os.path.split(tmpPair[0])
|
||||
|
||||
if activeId:
|
||||
# Given an HTML block like <li id="sidenav-moving-around">, insert
|
||||
# a class assignment: class="active". The ID to modify is
|
||||
@ -131,6 +144,13 @@ def copyFromIncl(inFileName, tag, activeId, outFile):
|
||||
else:
|
||||
fileData = newData
|
||||
|
||||
# Replace ${ROOT} with relative path to root directory.
|
||||
newData = re.sub("\${ROOT}\/", rootRel, fileData)
|
||||
if newData != fileData:
|
||||
#print("== ${ROOT}=" + rootRel + " in " + inclFileName)
|
||||
fileData = newData
|
||||
|
||||
# Copy data to output file.
|
||||
outFile.write(fileData)
|
||||
|
||||
|
||||
|
@ -1,9 +1,9 @@
|
||||
<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> -->
|
||||
<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> -->
|
||||
|
8
docs/head-incl.html
Normal file
8
docs/head-incl.html
Normal file
@ -0,0 +1,8 @@
|
||||
<!-- common head elements -->
|
||||
<meta charset="utf-8"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"
|
||||
integrity="sha384-vtXRMe3mGCbOeY7l30aIg8H9p3GdeSe4IFlP6G8JMa7o7lXvnz3GFKzPxzJdPfGK" crossorigin="anonymous"></script>
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"/>
|
||||
<link rel="stylesheet" href="${ROOT}/main.css"/>
|
@ -1,13 +1,16 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- START: /head-incl.html -->
|
||||
<!-- common head elements -->
|
||||
<meta charset="utf-8"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"
|
||||
integrity="sha384-vtXRMe3mGCbOeY7l30aIg8H9p3GdeSe4IFlP6G8JMa7o7lXvnz3GFKzPxzJdPfGK" crossorigin="anonymous"></script>
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"/>
|
||||
<link rel="stylesheet" href="/main.css"/>
|
||||
<link rel="stylesheet" href="main.css"/>
|
||||
<!-- END: /head-incl.html -->
|
||||
|
||||
<style>
|
||||
img {
|
||||
@ -23,33 +26,33 @@
|
||||
|
||||
<div id="masthead">
|
||||
<!-- START: /masthead-incl.html -->
|
||||
<!--<div class="masthead-title" style="background-image: url('images/screenshot-mainwin.png');">-->
|
||||
<div class="masthead-title">
|
||||
6502bench
|
||||
</div>
|
||||
<!--<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-home -->
|
||||
<!-- top navigation bar contents -->
|
||||
<nav>
|
||||
<a id="topnav-home" class="active" href="/">HOME</a>
|
||||
<a id="topnav-sgtutorial" 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>
|
||||
// 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>
|
||||
<!-- top navigation bar contents -->
|
||||
<nav>
|
||||
<a id="topnav-home" class="active" href="./">HOME</a>
|
||||
<a id="topnav-sgtutorial" 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>
|
||||
// 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>
|
||||
|
||||
@ -187,15 +190,15 @@ The full source code is available on
|
||||
|
||||
<div id="footer">
|
||||
<!-- START: /footer-incl.html -->
|
||||
<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> -->
|
||||
<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>
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
<!--<div class="masthead-title" style="background-image: url('images/screenshot-mainwin.png');">-->
|
||||
<div class="masthead-title">
|
||||
6502bench
|
||||
</div>
|
||||
<!--<div class="masthead-title" style="background-image: url('images/screenshot-mainwin.png');">-->
|
||||
<div class="masthead-title">
|
||||
6502bench
|
||||
</div>
|
||||
|
@ -1,13 +1,16 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- START: /head-incl.html -->
|
||||
<!-- common head elements -->
|
||||
<meta charset="utf-8"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"
|
||||
integrity="sha384-vtXRMe3mGCbOeY7l30aIg8H9p3GdeSe4IFlP6G8JMa7o7lXvnz3GFKzPxzJdPfGK" crossorigin="anonymous"></script>
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"/>
|
||||
<link rel="stylesheet" href="/main.css"/>
|
||||
<link rel="stylesheet" href="../main.css"/>
|
||||
<!-- END: /head-incl.html -->
|
||||
|
||||
<title>About Disassembly - SourceGen Tutorial</title>
|
||||
</head>
|
||||
@ -16,64 +19,64 @@
|
||||
|
||||
<div id="masthead">
|
||||
<!-- START: /masthead-incl.html -->
|
||||
<!--<div class="masthead-title" style="background-image: url('images/screenshot-mainwin.png');">-->
|
||||
<div class="masthead-title">
|
||||
6502bench
|
||||
</div>
|
||||
<!--<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 -->
|
||||
<!-- 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>
|
||||
// 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>
|
||||
<!-- 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>
|
||||
// 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 -->
|
||||
<!-- 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>
|
||||
<!-- side navigation bar contents -->
|
||||
<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>
|
||||
<li id="sidenav-digging-deeper"><a href="digging-deeper.html">Digging Deeper</a>
|
||||
<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>
|
||||
<li id="sidenav-advanced-topics"><a href="advanced-topics.html">Advanced Topics</a>
|
||||
<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></li>
|
||||
</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>
|
||||
<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>
|
||||
<li id="sidenav-digging-deeper"><a href="digging-deeper.html">Digging Deeper</a>
|
||||
<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>
|
||||
<li id="sidenav-advanced-topics"><a href="advanced-topics.html">Advanced Topics</a>
|
||||
<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></li>
|
||||
</ul>
|
||||
<!-- END: sidenav-incl.html -->
|
||||
</div>
|
||||
|
||||
@ -187,15 +190,15 @@ CopyData lda #<addrs ;get pointer into
|
||||
|
||||
<div id="footer">
|
||||
<!-- START: /footer-incl.html -->
|
||||
<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> -->
|
||||
<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>
|
||||
|
||||
|
@ -1,13 +1,16 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- START: /head-incl.html -->
|
||||
<!-- common head elements -->
|
||||
<meta charset="utf-8"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"
|
||||
integrity="sha384-vtXRMe3mGCbOeY7l30aIg8H9p3GdeSe4IFlP6G8JMa7o7lXvnz3GFKzPxzJdPfGK" crossorigin="anonymous"></script>
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"/>
|
||||
<link rel="stylesheet" href="/main.css"/>
|
||||
<link rel="stylesheet" href="../main.css"/>
|
||||
<!-- END: /head-incl.html -->
|
||||
|
||||
<title>Address Tables - SourceGen Tutorial</title>
|
||||
</head>
|
||||
@ -16,64 +19,64 @@
|
||||
|
||||
<div id="masthead">
|
||||
<!-- START: /masthead-incl.html -->
|
||||
<!--<div class="masthead-title" style="background-image: url('images/screenshot-mainwin.png');">-->
|
||||
<div class="masthead-title">
|
||||
6502bench
|
||||
</div>
|
||||
<!--<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 -->
|
||||
<!-- 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>
|
||||
// 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>
|
||||
<!-- 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>
|
||||
// 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 -->
|
||||
<!-- 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>
|
||||
<!-- side navigation bar contents -->
|
||||
<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>
|
||||
<li id="sidenav-digging-deeper"><a href="digging-deeper.html">Digging Deeper</a>
|
||||
<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>
|
||||
<li id="sidenav-advanced-topics"><a href="advanced-topics.html">Advanced Topics</a>
|
||||
<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></li>
|
||||
</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>
|
||||
<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>
|
||||
<li id="sidenav-digging-deeper"><a href="digging-deeper.html">Digging Deeper</a>
|
||||
<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>
|
||||
<li id="sidenav-advanced-topics"><a href="advanced-topics.html">Advanced Topics</a>
|
||||
<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></li>
|
||||
</ul>
|
||||
<!-- END: sidenav-incl.html -->
|
||||
</div>
|
||||
|
||||
@ -294,15 +297,15 @@
|
||||
|
||||
<div id="footer">
|
||||
<!-- START: /footer-incl.html -->
|
||||
<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> -->
|
||||
<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>
|
||||
|
||||
|
@ -1,13 +1,16 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- START: /head-incl.html -->
|
||||
<!-- common head elements -->
|
||||
<meta charset="utf-8"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"
|
||||
integrity="sha384-vtXRMe3mGCbOeY7l30aIg8H9p3GdeSe4IFlP6G8JMa7o7lXvnz3GFKzPxzJdPfGK" crossorigin="anonymous"></script>
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"/>
|
||||
<link rel="stylesheet" href="/main.css"/>
|
||||
<link rel="stylesheet" href="../main.css"/>
|
||||
<!-- END: /head-incl.html -->
|
||||
|
||||
<title>Advanced Topics - SourceGen Tutorial</title>
|
||||
</head>
|
||||
@ -16,64 +19,64 @@
|
||||
|
||||
<div id="masthead">
|
||||
<!-- START: /masthead-incl.html -->
|
||||
<!--<div class="masthead-title" style="background-image: url('images/screenshot-mainwin.png');">-->
|
||||
<div class="masthead-title">
|
||||
6502bench
|
||||
</div>
|
||||
<!--<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 -->
|
||||
<!-- 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>
|
||||
// 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>
|
||||
<!-- 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>
|
||||
// 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 -->
|
||||
<!-- 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>
|
||||
<!-- side navigation bar contents -->
|
||||
<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>
|
||||
<li id="sidenav-digging-deeper"><a href="digging-deeper.html">Digging Deeper</a>
|
||||
<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>
|
||||
<li id="sidenav-advanced-topics" class="active"><a href="advanced-topics.html">Advanced Topics</a>
|
||||
<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></li>
|
||||
</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>
|
||||
<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>
|
||||
<li id="sidenav-digging-deeper"><a href="digging-deeper.html">Digging Deeper</a>
|
||||
<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>
|
||||
<li id="sidenav-advanced-topics" class="active"><a href="advanced-topics.html">Advanced Topics</a>
|
||||
<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></li>
|
||||
</ul>
|
||||
<!-- END: sidenav-incl.html -->
|
||||
</div>
|
||||
|
||||
@ -107,15 +110,15 @@ All of the tutorials assume you are already familiar with SourceGen.</p>
|
||||
|
||||
<div id="footer">
|
||||
<!-- START: /footer-incl.html -->
|
||||
<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> -->
|
||||
<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>
|
||||
|
||||
|
@ -1,13 +1,16 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- START: /head-incl.html -->
|
||||
<!-- common head elements -->
|
||||
<meta charset="utf-8"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"
|
||||
integrity="sha384-vtXRMe3mGCbOeY7l30aIg8H9p3GdeSe4IFlP6G8JMa7o7lXvnz3GFKzPxzJdPfGK" crossorigin="anonymous"></script>
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"/>
|
||||
<link rel="stylesheet" href="/main.css"/>
|
||||
<link rel="stylesheet" href="../main.css"/>
|
||||
<!-- END: /head-incl.html -->
|
||||
|
||||
<title>Digging Deeper - SourceGen Tutorial</title>
|
||||
</head>
|
||||
@ -16,64 +19,64 @@
|
||||
|
||||
<div id="masthead">
|
||||
<!-- START: /masthead-incl.html -->
|
||||
<!--<div class="masthead-title" style="background-image: url('images/screenshot-mainwin.png');">-->
|
||||
<div class="masthead-title">
|
||||
6502bench
|
||||
</div>
|
||||
<!--<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 -->
|
||||
<!-- 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>
|
||||
// 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>
|
||||
<!-- 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>
|
||||
// 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 -->
|
||||
<!-- 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>
|
||||
<!-- side navigation bar contents -->
|
||||
<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>
|
||||
<li id="sidenav-digging-deeper" class="active"><a href="digging-deeper.html">Digging Deeper</a>
|
||||
<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>
|
||||
<li id="sidenav-advanced-topics"><a href="advanced-topics.html">Advanced Topics</a>
|
||||
<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></li>
|
||||
</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>
|
||||
<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>
|
||||
<li id="sidenav-digging-deeper" class="active"><a href="digging-deeper.html">Digging Deeper</a>
|
||||
<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>
|
||||
<li id="sidenav-advanced-topics"><a href="advanced-topics.html">Advanced Topics</a>
|
||||
<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></li>
|
||||
</ul>
|
||||
<!-- END: sidenav-incl.html -->
|
||||
</div>
|
||||
|
||||
@ -194,15 +197,15 @@
|
||||
|
||||
<div id="footer">
|
||||
<!-- START: /footer-incl.html -->
|
||||
<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> -->
|
||||
<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>
|
||||
|
||||
|
@ -1,13 +1,16 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- START: /head-incl.html -->
|
||||
<!-- common head elements -->
|
||||
<meta charset="utf-8"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"
|
||||
integrity="sha384-vtXRMe3mGCbOeY7l30aIg8H9p3GdeSe4IFlP6G8JMa7o7lXvnz3GFKzPxzJdPfGK" crossorigin="anonymous"></script>
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"/>
|
||||
<link rel="stylesheet" href="/main.css"/>
|
||||
<link rel="stylesheet" href="../main.css"/>
|
||||
<!-- END: /head-incl.html -->
|
||||
|
||||
<title>Editing Data - SourceGen Tutorial</title>
|
||||
</head>
|
||||
@ -16,64 +19,64 @@
|
||||
|
||||
<div id="masthead">
|
||||
<!-- START: /masthead-incl.html -->
|
||||
<!--<div class="masthead-title" style="background-image: url('images/screenshot-mainwin.png');">-->
|
||||
<div class="masthead-title">
|
||||
6502bench
|
||||
</div>
|
||||
<!--<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 -->
|
||||
<!-- 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>
|
||||
// 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>
|
||||
<!-- 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>
|
||||
// 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 -->
|
||||
<!-- 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>
|
||||
<!-- side navigation bar contents -->
|
||||
<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>
|
||||
<li id="sidenav-digging-deeper"><a href="digging-deeper.html">Digging Deeper</a>
|
||||
<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>
|
||||
<li id="sidenav-advanced-topics"><a href="advanced-topics.html">Advanced Topics</a>
|
||||
<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></li>
|
||||
</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>
|
||||
<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>
|
||||
<li id="sidenav-digging-deeper"><a href="digging-deeper.html">Digging Deeper</a>
|
||||
<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>
|
||||
<li id="sidenav-advanced-topics"><a href="advanced-topics.html">Advanced Topics</a>
|
||||
<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></li>
|
||||
</ul>
|
||||
<!-- END: sidenav-incl.html -->
|
||||
</div>
|
||||
|
||||
@ -231,15 +234,15 @@
|
||||
|
||||
<div id="footer">
|
||||
<!-- START: /footer-incl.html -->
|
||||
<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> -->
|
||||
<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>
|
||||
|
||||
|
@ -1,13 +1,16 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- START: /head-incl.html -->
|
||||
<!-- common head elements -->
|
||||
<meta charset="utf-8"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"
|
||||
integrity="sha384-vtXRMe3mGCbOeY7l30aIg8H9p3GdeSe4IFlP6G8JMa7o7lXvnz3GFKzPxzJdPfGK" crossorigin="anonymous"></script>
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"/>
|
||||
<link rel="stylesheet" href="/main.css"/>
|
||||
<link rel="stylesheet" href="../main.css"/>
|
||||
<!-- END: /head-incl.html -->
|
||||
|
||||
<title>Extension Scripts - SourceGen Tutorial</title>
|
||||
</head>
|
||||
@ -16,64 +19,64 @@
|
||||
|
||||
<div id="masthead">
|
||||
<!-- START: /masthead-incl.html -->
|
||||
<!--<div class="masthead-title" style="background-image: url('images/screenshot-mainwin.png');">-->
|
||||
<div class="masthead-title">
|
||||
6502bench
|
||||
</div>
|
||||
<!--<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 -->
|
||||
<!-- 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>
|
||||
// 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>
|
||||
<!-- 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>
|
||||
// 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 -->
|
||||
<!-- 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>
|
||||
<!-- side navigation bar contents -->
|
||||
<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>
|
||||
<li id="sidenav-digging-deeper"><a href="digging-deeper.html">Digging Deeper</a>
|
||||
<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>
|
||||
<li id="sidenav-advanced-topics"><a href="advanced-topics.html">Advanced Topics</a>
|
||||
<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></li>
|
||||
</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>
|
||||
<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>
|
||||
<li id="sidenav-digging-deeper"><a href="digging-deeper.html">Digging Deeper</a>
|
||||
<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>
|
||||
<li id="sidenav-advanced-topics"><a href="advanced-topics.html">Advanced Topics</a>
|
||||
<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></li>
|
||||
</ul>
|
||||
<!-- END: sidenav-incl.html -->
|
||||
</div>
|
||||
|
||||
@ -218,15 +221,15 @@
|
||||
|
||||
<div id="footer">
|
||||
<!-- START: /footer-incl.html -->
|
||||
<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> -->
|
||||
<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>
|
||||
|
||||
|
@ -1,13 +1,16 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- START: /head-incl.html -->
|
||||
<!-- common head elements -->
|
||||
<meta charset="utf-8"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"
|
||||
integrity="sha384-vtXRMe3mGCbOeY7l30aIg8H9p3GdeSe4IFlP6G8JMa7o7lXvnz3GFKzPxzJdPfGK" crossorigin="anonymous"></script>
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"/>
|
||||
<link rel="stylesheet" href="/main.css"/>
|
||||
<link rel="stylesheet" href="../main.css"/>
|
||||
<!-- END: /head-incl.html -->
|
||||
|
||||
<title>Generating Code - SourceGen Tutorial</title>
|
||||
</head>
|
||||
@ -16,64 +19,64 @@
|
||||
|
||||
<div id="masthead">
|
||||
<!-- START: /masthead-incl.html -->
|
||||
<!--<div class="masthead-title" style="background-image: url('images/screenshot-mainwin.png');">-->
|
||||
<div class="masthead-title">
|
||||
6502bench
|
||||
</div>
|
||||
<!--<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 -->
|
||||
<!-- 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>
|
||||
// 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>
|
||||
<!-- 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>
|
||||
// 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 -->
|
||||
<!-- 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>
|
||||
<!-- side navigation bar contents -->
|
||||
<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>
|
||||
<li id="sidenav-digging-deeper"><a href="digging-deeper.html">Digging Deeper</a>
|
||||
<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>
|
||||
<li id="sidenav-advanced-topics"><a href="advanced-topics.html">Advanced Topics</a>
|
||||
<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></li>
|
||||
</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>
|
||||
<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>
|
||||
<li id="sidenav-digging-deeper"><a href="digging-deeper.html">Digging Deeper</a>
|
||||
<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>
|
||||
<li id="sidenav-advanced-topics"><a href="advanced-topics.html">Advanced Topics</a>
|
||||
<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></li>
|
||||
</ul>
|
||||
<!-- END: sidenav-incl.html -->
|
||||
</div>
|
||||
|
||||
@ -158,15 +161,15 @@
|
||||
|
||||
<div id="footer">
|
||||
<!-- START: /footer-incl.html -->
|
||||
<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> -->
|
||||
<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>
|
||||
|
||||
|
@ -1,13 +1,16 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- START: /head-incl.html -->
|
||||
<!-- common head elements -->
|
||||
<meta charset="utf-8"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"
|
||||
integrity="sha384-vtXRMe3mGCbOeY7l30aIg8H9p3GdeSe4IFlP6G8JMa7o7lXvnz3GFKzPxzJdPfGK" crossorigin="anonymous"></script>
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"/>
|
||||
<link rel="stylesheet" href="/main.css"/>
|
||||
<link rel="stylesheet" href="../main.css"/>
|
||||
<!-- END: /head-incl.html -->
|
||||
|
||||
<title>SourceGen Tutorial</title>
|
||||
</head>
|
||||
@ -16,64 +19,64 @@
|
||||
|
||||
<div id="masthead">
|
||||
<!-- START: /masthead-incl.html -->
|
||||
<!--<div class="masthead-title" style="background-image: url('images/screenshot-mainwin.png');">-->
|
||||
<div class="masthead-title">
|
||||
6502bench
|
||||
</div>
|
||||
<!--<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 -->
|
||||
<!-- 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>
|
||||
// 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>
|
||||
<!-- 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>
|
||||
// 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 -->
|
||||
<!-- 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>
|
||||
<!-- side navigation bar contents -->
|
||||
<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>
|
||||
<li id="sidenav-digging-deeper"><a href="digging-deeper.html">Digging Deeper</a>
|
||||
<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>
|
||||
<li id="sidenav-advanced-topics"><a href="advanced-topics.html">Advanced Topics</a>
|
||||
<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></li>
|
||||
</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>
|
||||
<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>
|
||||
<li id="sidenav-digging-deeper"><a href="digging-deeper.html">Digging Deeper</a>
|
||||
<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>
|
||||
<li id="sidenav-advanced-topics"><a href="advanced-topics.html">Advanced Topics</a>
|
||||
<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></li>
|
||||
</ul>
|
||||
<!-- END: sidenav-incl.html -->
|
||||
</div>
|
||||
|
||||
@ -113,15 +116,15 @@ URL.
|
||||
|
||||
<div id="footer">
|
||||
<!-- START: /footer-incl.html -->
|
||||
<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> -->
|
||||
<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>
|
||||
|
||||
|
@ -1,13 +1,16 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- START: /head-incl.html -->
|
||||
<!-- common head elements -->
|
||||
<meta charset="utf-8"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"
|
||||
integrity="sha384-vtXRMe3mGCbOeY7l30aIg8H9p3GdeSe4IFlP6G8JMa7o7lXvnz3GFKzPxzJdPfGK" crossorigin="anonymous"></script>
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"/>
|
||||
<link rel="stylesheet" href="/main.css"/>
|
||||
<link rel="stylesheet" href="../main.css"/>
|
||||
<!-- END: /head-incl.html -->
|
||||
|
||||
<title>Inline Data - SourceGen Tutorial</title>
|
||||
</head>
|
||||
@ -16,64 +19,64 @@
|
||||
|
||||
<div id="masthead">
|
||||
<!-- START: /masthead-incl.html -->
|
||||
<!--<div class="masthead-title" style="background-image: url('images/screenshot-mainwin.png');">-->
|
||||
<div class="masthead-title">
|
||||
6502bench
|
||||
</div>
|
||||
<!--<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 -->
|
||||
<!-- 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>
|
||||
// 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>
|
||||
<!-- 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>
|
||||
// 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 -->
|
||||
<!-- 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>
|
||||
<!-- side navigation bar contents -->
|
||||
<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>
|
||||
<li id="sidenav-digging-deeper"><a href="digging-deeper.html">Digging Deeper</a>
|
||||
<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>
|
||||
<li id="sidenav-advanced-topics"><a href="advanced-topics.html">Advanced Topics</a>
|
||||
<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></li>
|
||||
</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>
|
||||
<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>
|
||||
<li id="sidenav-digging-deeper"><a href="digging-deeper.html">Digging Deeper</a>
|
||||
<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>
|
||||
<li id="sidenav-advanced-topics"><a href="advanced-topics.html">Advanced Topics</a>
|
||||
<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></li>
|
||||
</ul>
|
||||
<!-- END: sidenav-incl.html -->
|
||||
</div>
|
||||
|
||||
@ -163,15 +166,15 @@
|
||||
|
||||
<div id="footer">
|
||||
<!-- START: /footer-incl.html -->
|
||||
<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> -->
|
||||
<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>
|
||||
|
||||
|
@ -1,13 +1,16 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- START: /head-incl.html -->
|
||||
<!-- common head elements -->
|
||||
<meta charset="utf-8"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"
|
||||
integrity="sha384-vtXRMe3mGCbOeY7l30aIg8H9p3GdeSe4IFlP6G8JMa7o7lXvnz3GFKzPxzJdPfGK" crossorigin="anonymous"></script>
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"/>
|
||||
<link rel="stylesheet" href="/main.css"/>
|
||||
<link rel="stylesheet" href="../main.css"/>
|
||||
<!-- END: /head-incl.html -->
|
||||
|
||||
<title>Labels & Symbols - SourceGen Tutorial</title>
|
||||
</head>
|
||||
@ -16,64 +19,64 @@
|
||||
|
||||
<div id="masthead">
|
||||
<!-- START: /masthead-incl.html -->
|
||||
<!--<div class="masthead-title" style="background-image: url('images/screenshot-mainwin.png');">-->
|
||||
<div class="masthead-title">
|
||||
6502bench
|
||||
</div>
|
||||
<!--<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 -->
|
||||
<!-- 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>
|
||||
// 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>
|
||||
<!-- 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>
|
||||
// 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 -->
|
||||
<!-- 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>
|
||||
<!-- side navigation bar contents -->
|
||||
<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>
|
||||
<li id="sidenav-digging-deeper"><a href="digging-deeper.html">Digging Deeper</a>
|
||||
<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>
|
||||
<li id="sidenav-advanced-topics"><a href="advanced-topics.html">Advanced Topics</a>
|
||||
<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></li>
|
||||
</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>
|
||||
<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>
|
||||
<li id="sidenav-digging-deeper"><a href="digging-deeper.html">Digging Deeper</a>
|
||||
<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>
|
||||
<li id="sidenav-advanced-topics"><a href="advanced-topics.html">Advanced Topics</a>
|
||||
<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></li>
|
||||
</ul>
|
||||
<!-- END: sidenav-incl.html -->
|
||||
</div>
|
||||
|
||||
@ -379,15 +382,15 @@
|
||||
|
||||
<div id="footer">
|
||||
<!-- START: /footer-incl.html -->
|
||||
<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> -->
|
||||
<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>
|
||||
|
||||
|
@ -1,13 +1,16 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- START: /head-incl.html -->
|
||||
<!-- common head elements -->
|
||||
<meta charset="utf-8"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"
|
||||
integrity="sha384-vtXRMe3mGCbOeY7l30aIg8H9p3GdeSe4IFlP6G8JMa7o7lXvnz3GFKzPxzJdPfGK" crossorigin="anonymous"></script>
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"/>
|
||||
<link rel="stylesheet" href="/main.css"/>
|
||||
<link rel="stylesheet" href="../main.css"/>
|
||||
<!-- END: /head-incl.html -->
|
||||
|
||||
<title>Local Variables - SourceGen Tutorial</title>
|
||||
</head>
|
||||
@ -16,64 +19,64 @@
|
||||
|
||||
<div id="masthead">
|
||||
<!-- START: /masthead-incl.html -->
|
||||
<!--<div class="masthead-title" style="background-image: url('images/screenshot-mainwin.png');">-->
|
||||
<div class="masthead-title">
|
||||
6502bench
|
||||
</div>
|
||||
<!--<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 -->
|
||||
<!-- 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>
|
||||
// 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>
|
||||
<!-- 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>
|
||||
// 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 -->
|
||||
<!-- 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>
|
||||
<!-- side navigation bar contents -->
|
||||
<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>
|
||||
<li id="sidenav-digging-deeper"><a href="digging-deeper.html">Digging Deeper</a>
|
||||
<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>
|
||||
<li id="sidenav-advanced-topics"><a href="advanced-topics.html">Advanced Topics</a>
|
||||
<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></li>
|
||||
</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>
|
||||
<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>
|
||||
<li id="sidenav-digging-deeper"><a href="digging-deeper.html">Digging Deeper</a>
|
||||
<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>
|
||||
<li id="sidenav-advanced-topics"><a href="advanced-topics.html">Advanced Topics</a>
|
||||
<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></li>
|
||||
</ul>
|
||||
<!-- END: sidenav-incl.html -->
|
||||
</div>
|
||||
|
||||
@ -297,15 +300,15 @@
|
||||
|
||||
<div id="footer">
|
||||
<!-- START: /footer-incl.html -->
|
||||
<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> -->
|
||||
<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>
|
||||
|
||||
|
@ -1,13 +1,16 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- START: /head-incl.html -->
|
||||
<!-- common head elements -->
|
||||
<meta charset="utf-8"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"
|
||||
integrity="sha384-vtXRMe3mGCbOeY7l30aIg8H9p3GdeSe4IFlP6G8JMa7o7lXvnz3GFKzPxzJdPfGK" crossorigin="anonymous"></script>
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"/>
|
||||
<link rel="stylesheet" href="/main.css"/>
|
||||
<link rel="stylesheet" href="../main.css"/>
|
||||
<!-- END: /head-incl.html -->
|
||||
|
||||
<title>Moving Around - SourceGen Tutorial</title>
|
||||
</head>
|
||||
@ -16,64 +19,64 @@
|
||||
|
||||
<div id="masthead">
|
||||
<!-- START: /masthead-incl.html -->
|
||||
<!--<div class="masthead-title" style="background-image: url('images/screenshot-mainwin.png');">-->
|
||||
<div class="masthead-title">
|
||||
6502bench
|
||||
</div>
|
||||
<!--<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 -->
|
||||
<!-- 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>
|
||||
// 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>
|
||||
<!-- 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>
|
||||
// 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-moving-around -->
|
||||
<!-- 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>
|
||||
<!-- side navigation bar contents -->
|
||||
<ul>
|
||||
<li id="sidenav-moving-around" class="active"><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>
|
||||
<li id="sidenav-digging-deeper"><a href="digging-deeper.html">Digging Deeper</a>
|
||||
<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>
|
||||
<li id="sidenav-advanced-topics"><a href="advanced-topics.html">Advanced Topics</a>
|
||||
<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></li>
|
||||
</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>
|
||||
<ul>
|
||||
<li id="sidenav-moving-around" class="active"><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>
|
||||
<li id="sidenav-digging-deeper"><a href="digging-deeper.html">Digging Deeper</a>
|
||||
<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>
|
||||
<li id="sidenav-advanced-topics"><a href="advanced-topics.html">Advanced Topics</a>
|
||||
<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></li>
|
||||
</ul>
|
||||
<!-- END: sidenav-incl.html -->
|
||||
</div>
|
||||
|
||||
@ -228,15 +231,15 @@
|
||||
|
||||
<div id="footer">
|
||||
<!-- START: /footer-incl.html -->
|
||||
<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> -->
|
||||
<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>
|
||||
|
||||
|
@ -1,13 +1,16 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- START: /head-incl.html -->
|
||||
<!-- common head elements -->
|
||||
<meta charset="utf-8"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"
|
||||
integrity="sha384-vtXRMe3mGCbOeY7l30aIg8H9p3GdeSe4IFlP6G8JMa7o7lXvnz3GFKzPxzJdPfGK" crossorigin="anonymous"></script>
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"/>
|
||||
<link rel="stylesheet" href="/main.css"/>
|
||||
<link rel="stylesheet" href="../main.css"/>
|
||||
<!-- END: /head-incl.html -->
|
||||
|
||||
<title>Odds & Ends - SourceGen Tutorial</title>
|
||||
</head>
|
||||
@ -16,64 +19,64 @@
|
||||
|
||||
<div id="masthead">
|
||||
<!-- START: /masthead-incl.html -->
|
||||
<!--<div class="masthead-title" style="background-image: url('images/screenshot-mainwin.png');">-->
|
||||
<div class="masthead-title">
|
||||
6502bench
|
||||
</div>
|
||||
<!--<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 -->
|
||||
<!-- 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>
|
||||
// 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>
|
||||
<!-- 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>
|
||||
// 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 -->
|
||||
<!-- 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>
|
||||
<!-- side navigation bar contents -->
|
||||
<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>
|
||||
<li id="sidenav-digging-deeper"><a href="digging-deeper.html">Digging Deeper</a>
|
||||
<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>
|
||||
<li id="sidenav-advanced-topics"><a href="advanced-topics.html">Advanced Topics</a>
|
||||
<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></li>
|
||||
</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>
|
||||
<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>
|
||||
<li id="sidenav-digging-deeper"><a href="digging-deeper.html">Digging Deeper</a>
|
||||
<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>
|
||||
<li id="sidenav-advanced-topics"><a href="advanced-topics.html">Advanced Topics</a>
|
||||
<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></li>
|
||||
</ul>
|
||||
<!-- END: sidenav-incl.html -->
|
||||
</div>
|
||||
|
||||
@ -224,15 +227,15 @@
|
||||
|
||||
<div id="footer">
|
||||
<!-- START: /footer-incl.html -->
|
||||
<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> -->
|
||||
<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>
|
||||
|
||||
|
@ -1,26 +1,26 @@
|
||||
<!-- 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>
|
||||
<!-- side navigation bar contents -->
|
||||
<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>
|
||||
<li id="sidenav-digging-deeper"><a href="digging-deeper.html">Digging Deeper</a>
|
||||
<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>
|
||||
<li id="sidenav-advanced-topics"><a href="advanced-topics.html">Advanced Topics</a>
|
||||
<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></li>
|
||||
</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>
|
||||
<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>
|
||||
<li id="sidenav-digging-deeper"><a href="digging-deeper.html">Digging Deeper</a>
|
||||
<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>
|
||||
<li id="sidenav-advanced-topics"><a href="advanced-topics.html">Advanced Topics</a>
|
||||
<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></li>
|
||||
</ul>
|
||||
|
@ -1,13 +1,16 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- START: /head-incl.html -->
|
||||
<!-- common head elements -->
|
||||
<meta charset="utf-8"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"
|
||||
integrity="sha384-vtXRMe3mGCbOeY7l30aIg8H9p3GdeSe4IFlP6G8JMa7o7lXvnz3GFKzPxzJdPfGK" crossorigin="anonymous"></script>
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"/>
|
||||
<link rel="stylesheet" href="/main.css"/>
|
||||
<link rel="stylesheet" href="../main.css"/>
|
||||
<!-- END: /head-incl.html -->
|
||||
|
||||
<title>Simple Edits - SourceGen Tutorial</title>
|
||||
</head>
|
||||
@ -16,64 +19,64 @@
|
||||
|
||||
<div id="masthead">
|
||||
<!-- START: /masthead-incl.html -->
|
||||
<!--<div class="masthead-title" style="background-image: url('images/screenshot-mainwin.png');">-->
|
||||
<div class="masthead-title">
|
||||
6502bench
|
||||
</div>
|
||||
<!--<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 -->
|
||||
<!-- 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>
|
||||
// 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>
|
||||
<!-- 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>
|
||||
// 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 -->
|
||||
<!-- 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>
|
||||
<!-- side navigation bar contents -->
|
||||
<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>
|
||||
<li id="sidenav-digging-deeper"><a href="digging-deeper.html">Digging Deeper</a>
|
||||
<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>
|
||||
<li id="sidenav-advanced-topics"><a href="advanced-topics.html">Advanced Topics</a>
|
||||
<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></li>
|
||||
</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>
|
||||
<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>
|
||||
<li id="sidenav-digging-deeper"><a href="digging-deeper.html">Digging Deeper</a>
|
||||
<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>
|
||||
<li id="sidenav-advanced-topics"><a href="advanced-topics.html">Advanced Topics</a>
|
||||
<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></li>
|
||||
</ul>
|
||||
<!-- END: sidenav-incl.html -->
|
||||
</div>
|
||||
|
||||
@ -231,15 +234,15 @@
|
||||
|
||||
<div id="footer">
|
||||
<!-- START: /footer-incl.html -->
|
||||
<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> -->
|
||||
<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>
|
||||
|
||||
|
@ -1,13 +1,16 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- START: /head-incl.html -->
|
||||
<!-- common head elements -->
|
||||
<meta charset="utf-8"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"
|
||||
integrity="sha384-vtXRMe3mGCbOeY7l30aIg8H9p3GdeSe4IFlP6G8JMa7o7lXvnz3GFKzPxzJdPfGK" crossorigin="anonymous"></script>
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"/>
|
||||
<link rel="stylesheet" href="/main.css"/>
|
||||
<link rel="stylesheet" href="../main.css"/>
|
||||
<!-- END: /head-incl.html -->
|
||||
|
||||
<title>String Formatting - SourceGen Tutorial</title>
|
||||
</head>
|
||||
@ -16,64 +19,64 @@
|
||||
|
||||
<div id="masthead">
|
||||
<!-- START: /masthead-incl.html -->
|
||||
<!--<div class="masthead-title" style="background-image: url('images/screenshot-mainwin.png');">-->
|
||||
<div class="masthead-title">
|
||||
6502bench
|
||||
</div>
|
||||
<!--<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 -->
|
||||
<!-- 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>
|
||||
// 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>
|
||||
<!-- 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>
|
||||
// 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 -->
|
||||
<!-- 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>
|
||||
<!-- side navigation bar contents -->
|
||||
<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>
|
||||
<li id="sidenav-digging-deeper"><a href="digging-deeper.html">Digging Deeper</a>
|
||||
<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>
|
||||
<li id="sidenav-advanced-topics"><a href="advanced-topics.html">Advanced Topics</a>
|
||||
<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></li>
|
||||
</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>
|
||||
<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>
|
||||
<li id="sidenav-digging-deeper"><a href="digging-deeper.html">Digging Deeper</a>
|
||||
<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>
|
||||
<li id="sidenav-advanced-topics"><a href="advanced-topics.html">Advanced Topics</a>
|
||||
<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></li>
|
||||
</ul>
|
||||
<!-- END: sidenav-incl.html -->
|
||||
</div>
|
||||
|
||||
@ -148,15 +151,15 @@
|
||||
|
||||
<div id="footer">
|
||||
<!-- START: /footer-incl.html -->
|
||||
<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> -->
|
||||
<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>
|
||||
|
||||
|
@ -1,13 +1,16 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- START: /head-incl.html -->
|
||||
<!-- common head elements -->
|
||||
<meta charset="utf-8"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"
|
||||
integrity="sha384-vtXRMe3mGCbOeY7l30aIg8H9p3GdeSe4IFlP6G8JMa7o7lXvnz3GFKzPxzJdPfGK" crossorigin="anonymous"></script>
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"/>
|
||||
<link rel="stylesheet" href="/main.css"/>
|
||||
<link rel="stylesheet" href="../main.css"/>
|
||||
<!-- END: /head-incl.html -->
|
||||
|
||||
<title>Using SourceGen - SourceGen Tutorial</title>
|
||||
</head>
|
||||
@ -16,64 +19,64 @@
|
||||
|
||||
<div id="masthead">
|
||||
<!-- START: /masthead-incl.html -->
|
||||
<!--<div class="masthead-title" style="background-image: url('images/screenshot-mainwin.png');">-->
|
||||
<div class="masthead-title">
|
||||
6502bench
|
||||
</div>
|
||||
<!--<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 -->
|
||||
<!-- 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>
|
||||
// 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>
|
||||
<!-- 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>
|
||||
// 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 -->
|
||||
<!-- 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>
|
||||
<!-- side navigation bar contents -->
|
||||
<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>
|
||||
<li id="sidenav-digging-deeper"><a href="digging-deeper.html">Digging Deeper</a>
|
||||
<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>
|
||||
<li id="sidenav-advanced-topics"><a href="advanced-topics.html">Advanced Topics</a>
|
||||
<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></li>
|
||||
</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>
|
||||
<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>
|
||||
<li id="sidenav-digging-deeper"><a href="digging-deeper.html">Digging Deeper</a>
|
||||
<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>
|
||||
<li id="sidenav-advanced-topics"><a href="advanced-topics.html">Advanced Topics</a>
|
||||
<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></li>
|
||||
</ul>
|
||||
<!-- END: sidenav-incl.html -->
|
||||
</div>
|
||||
|
||||
@ -201,15 +204,15 @@
|
||||
|
||||
<div id="footer">
|
||||
<!-- START: /footer-incl.html -->
|
||||
<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> -->
|
||||
<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>
|
||||
|
||||
|
@ -1,13 +1,16 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- START: /head-incl.html -->
|
||||
<!-- common head elements -->
|
||||
<meta charset="utf-8"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"
|
||||
integrity="sha384-vtXRMe3mGCbOeY7l30aIg8H9p3GdeSe4IFlP6G8JMa7o7lXvnz3GFKzPxzJdPfGK" crossorigin="anonymous"></script>
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"/>
|
||||
<link rel="stylesheet" href="/main.css"/>
|
||||
<link rel="stylesheet" href="../main.css"/>
|
||||
<!-- END: /head-incl.html -->
|
||||
|
||||
<title>Visualizations - SourceGen Tutorial</title>
|
||||
</head>
|
||||
@ -16,64 +19,64 @@
|
||||
|
||||
<div id="masthead">
|
||||
<!-- START: /masthead-incl.html -->
|
||||
<!--<div class="masthead-title" style="background-image: url('images/screenshot-mainwin.png');">-->
|
||||
<div class="masthead-title">
|
||||
6502bench
|
||||
</div>
|
||||
<!--<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 -->
|
||||
<!-- 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>
|
||||
// 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>
|
||||
<!-- 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>
|
||||
// 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 -->
|
||||
<!-- 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>
|
||||
<!-- side navigation bar contents -->
|
||||
<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>
|
||||
<li id="sidenav-digging-deeper"><a href="digging-deeper.html">Digging Deeper</a>
|
||||
<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>
|
||||
<li id="sidenav-advanced-topics"><a href="advanced-topics.html">Advanced Topics</a>
|
||||
<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></li>
|
||||
</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>
|
||||
<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>
|
||||
<li id="sidenav-digging-deeper"><a href="digging-deeper.html">Digging Deeper</a>
|
||||
<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>
|
||||
<li id="sidenav-advanced-topics"><a href="advanced-topics.html">Advanced Topics</a>
|
||||
<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></li>
|
||||
</ul>
|
||||
<!-- END: sidenav-incl.html -->
|
||||
</div>
|
||||
|
||||
@ -369,15 +372,15 @@
|
||||
|
||||
<div id="footer">
|
||||
<!-- START: /footer-incl.html -->
|
||||
<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> -->
|
||||
<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>
|
||||
|
||||
|
@ -1,18 +1,18 @@
|
||||
<!-- top navigation bar contents -->
|
||||
<nav>
|
||||
<a id="topnav-home" href="/">HOME</a>
|
||||
<a id="topnav-sgtutorial" 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>
|
||||
// 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>
|
||||
<!-- top navigation bar contents -->
|
||||
<nav>
|
||||
<a id="topnav-home" href="${ROOT}/./">HOME</a>
|
||||
<a id="topnav-sgtutorial" href="${ROOT}/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>
|
||||
// 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>
|
||||
|
Loading…
Reference in New Issue
Block a user