about summary refs log tree commit diff stats
path: root/html
diff options
context:
space:
mode:
Diffstat (limited to 'html')
-rw-r--r--html/apps/assort.subx.html2
-rw-r--r--html/apps/crenshaw2-1.subx.html2
-rw-r--r--html/apps/crenshaw2-1b.subx.html2
-rw-r--r--html/apps/dquotes.subx.html2
-rw-r--r--html/apps/factorial.subx.html2
-rw-r--r--html/apps/handle.subx.html2
-rw-r--r--html/apps/hex.subx.html2
-rw-r--r--html/apps/pack.subx.html2
-rw-r--r--html/apps/survey.subx.html2
9 files changed, 9 insertions, 9 deletions
diff --git a/html/apps/assort.subx.html b/html/apps/assort.subx.html
index ac2ff46f..b5bbd6ed 100644
--- a/html/apps/assort.subx.html
+++ b/html/apps/assort.subx.html
@@ -68,7 +68,7 @@ if ('onhashchange' in window) {
 <span id="L6" class="LineNr">  6 </span><span class="subxComment"># Drop lines that are all comments. They could get misleading after assortment</span>
 <span id="L7" class="LineNr">  7 </span><span class="subxComment"># because we don't know if they refer to the line above or the line below.</span>
 <span id="L8" class="LineNr">  8 </span><span class="subxComment">#</span>
-<span id="L9" class="LineNr">  9 </span><span class="subxComment"># To run (from the subx/ directory):</span>
+<span id="L9" class="LineNr">  9 </span><span class="subxComment"># To run:</span>
 <span id="L10" class="LineNr"> 10 </span><span class="subxComment">#   $ ./subx translate *.subx apps/assort.subx -o apps/assort</span>
 <span id="L11" class="LineNr"> 11 </span><span class="subxComment">#   $ cat x</span>
 <span id="L12" class="LineNr"> 12 </span><span class="subxComment">#   == code</span>
diff --git a/html/apps/crenshaw2-1.subx.html b/html/apps/crenshaw2-1.subx.html
index bbc194a8..3e930538 100644
--- a/html/apps/crenshaw2-1.subx.html
+++ b/html/apps/crenshaw2-1.subx.html
@@ -64,7 +64,7 @@ if ('onhashchange' in window) {
 <span id="L2" class="LineNr">  2 </span><span class="subxComment"># which corresponds to the section &quot;single digits&quot; in <a href="https://compilers.iecc.com/crenshaw/tutor2.txt">https://compilers.iecc.com/crenshaw/tutor2.txt</a></span>
 <span id="L3" class="LineNr">  3 </span><span class="subxComment"># except that we support hex digits.</span>
 <span id="L4" class="LineNr">  4 </span><span class="subxComment">#</span>
-<span id="L5" class="LineNr">  5 </span><span class="subxComment"># To run (from the subx/ directory):</span>
+<span id="L5" class="LineNr">  5 </span><span class="subxComment"># To run:</span>
 <span id="L6" class="LineNr">  6 </span><span class="subxComment">#   $ ./subx translate *.subx apps/crenshaw2-1.subx -o apps/crenshaw2-1</span>
 <span id="L7" class="LineNr">  7 </span><span class="subxComment">#   $ echo '3'  |./subx run apps/crenshaw2-1</span>
 <span id="L8" class="LineNr">  8 </span><span class="subxComment"># Expected output:</span>
diff --git a/html/apps/crenshaw2-1b.subx.html b/html/apps/crenshaw2-1b.subx.html
index 5a064ced..7bfd6cac 100644
--- a/html/apps/crenshaw2-1b.subx.html
+++ b/html/apps/crenshaw2-1b.subx.html
@@ -64,7 +64,7 @@ if ('onhashchange' in window) {
 <span id="L2" class="LineNr">  2 </span><span class="subxComment"># which corresponds to the section &quot;single digits&quot; in <a href="https://compilers.iecc.com/crenshaw/tutor2.txt">https://compilers.iecc.com/crenshaw/tutor2.txt</a></span>
 <span id="L3" class="LineNr">  3 </span><span class="subxComment"># except that we support hex numbers of multiple digits.</span>
 <span id="L4" class="LineNr">  4 </span><span class="subxComment">#</span>
-<span id="L5" class="LineNr">  5 </span><span class="subxComment"># To run (from the subx/ directory):</span>
+<span id="L5" class="LineNr">  5 </span><span class="subxComment"># To run:</span>
 <span id="L6" class="LineNr">  6 </span><span class="subxComment">#   $ ./subx translate *.subx apps/crenshaw2-1b.subx -o apps/crenshaw2-1b</span>
 <span id="L7" class="LineNr">  7 </span><span class="subxComment">#   $ echo '1a'  |./subx run apps/crenshaw2-1b</span>
 <span id="L8" class="LineNr">  8 </span><span class="subxComment"># Expected output:</span>
diff --git a/html/apps/dquotes.subx.html b/html/apps/dquotes.subx.html
index b4a85d6e..417b324b 100644
--- a/html/apps/dquotes.subx.html
+++ b/html/apps/dquotes.subx.html
@@ -64,7 +64,7 @@ if ('onhashchange' in window) {
 <span id="L1" class="LineNr">   1 </span><span class="subxComment"># Translate literal strings within double quotes.</span>
 <span id="L2" class="LineNr">   2 </span><span class="subxComment"># Replace them with references to new variables in the data segment.</span>
 <span id="L3" class="LineNr">   3 </span><span class="subxComment">#</span>
-<span id="L4" class="LineNr">   4 </span><span class="subxComment"># To run (from the subx/ directory):</span>
+<span id="L4" class="LineNr">   4 </span><span class="subxComment"># To run:</span>
 <span id="L5" class="LineNr">   5 </span><span class="subxComment">#   $ ./subx translate *.subx apps/dquotes.subx -o apps/dquotes</span>
 <span id="L6" class="LineNr">   6 </span><span class="subxComment">#   $ cat x</span>
 <span id="L7" class="LineNr">   7 </span><span class="subxComment">#   == code</span>
diff --git a/html/apps/factorial.subx.html b/html/apps/factorial.subx.html
index 2d014e58..eff79035 100644
--- a/html/apps/factorial.subx.html
+++ b/html/apps/factorial.subx.html
@@ -61,7 +61,7 @@ if ('onhashchange' in window) {
 <pre id='vimCodeElement'>
 <span id="L1" class="LineNr">  1 </span><span class="subxComment">## compute the factorial of 5, and return the result in the exit code</span>
 <span id="L2" class="LineNr">  2 </span><span class="subxComment">#</span>
-<span id="L3" class="LineNr">  3 </span><span class="subxComment"># To run (from the subx directory):</span>
+<span id="L3" class="LineNr">  3 </span><span class="subxComment"># To run:</span>
 <span id="L4" class="LineNr">  4 </span><span class="subxComment">#   $ ./subx translate apps/factorial.subx -o apps/factorial</span>
 <span id="L5" class="LineNr">  5 </span><span class="subxComment">#   $ ./subx run apps/factorial</span>
 <span id="L6" class="LineNr">  6 </span><span class="subxComment"># Expected result:</span>
diff --git a/html/apps/handle.subx.html b/html/apps/handle.subx.html
index c510087c..64a784c6 100644
--- a/html/apps/handle.subx.html
+++ b/html/apps/handle.subx.html
@@ -75,7 +75,7 @@ if ('onhashchange' in window) {
 <span id="L12" class="LineNr"> 12 </span><span class="subxComment">#   offset 0: alloc id</span>
 <span id="L13" class="LineNr"> 13 </span><span class="subxComment">#   offset 4: address</span>
 <span id="L14" class="LineNr"> 14 </span><span class="subxComment">#</span>
-<span id="L15" class="LineNr"> 15 </span><span class="subxComment"># To run (from the subx directory):</span>
+<span id="L15" class="LineNr"> 15 </span><span class="subxComment"># To run:</span>
 <span id="L16" class="LineNr"> 16 </span><span class="subxComment">#   $ ./subx translate *.subx apps/handle.subx -o apps/handle</span>
 <span id="L17" class="LineNr"> 17 </span><span class="subxComment">#   $ ./subx run apps/handle</span>
 <span id="L18" class="LineNr"> 18 </span><span class="subxComment"># Expected result is a successful lookup followed by a hard abort:</span>
diff --git a/html/apps/hex.subx.html b/html/apps/hex.subx.html
index 37772e7d..2a0245ac 100644
--- a/html/apps/hex.subx.html
+++ b/html/apps/hex.subx.html
@@ -64,7 +64,7 @@ if ('onhashchange' in window) {
 <span id="L2" class="LineNr">   2 </span><span class="subxComment"># from stdin, and convert them into binary bytes (octets) on stdout. Ignore</span>
 <span id="L3" class="LineNr">   3 </span><span class="subxComment"># comments between '#' and newline.</span>
 <span id="L4" class="LineNr">   4 </span><span class="subxComment">#</span>
-<span id="L5" class="LineNr">   5 </span><span class="subxComment"># To run (from the subx/ directory):</span>
+<span id="L5" class="LineNr">   5 </span><span class="subxComment"># To run:</span>
 <span id="L6" class="LineNr">   6 </span><span class="subxComment">#   $ ./subx translate *.subx apps/hex.subx -o apps/hex</span>
 <span id="L7" class="LineNr">   7 </span><span class="subxComment">#   $ echo '80 81 82  # comment'  |./subx run apps/hex  |xxd -</span>
 <span id="L8" class="LineNr">   8 </span><span class="subxComment"># Expected output:</span>
diff --git a/html/apps/pack.subx.html b/html/apps/pack.subx.html
index 1b6eab45..0f49d205 100644
--- a/html/apps/pack.subx.html
+++ b/html/apps/pack.subx.html
@@ -64,7 +64,7 @@ if ('onhashchange' in window) {
 <span id="L2" class="LineNr">   2 </span><span class="subxComment"># of whitespace-separated ascii hex bytes on stdout. Label definitions and</span>
 <span id="L3" class="LineNr">   3 </span><span class="subxComment"># uses are left untouched.</span>
 <span id="L4" class="LineNr">   4 </span><span class="subxComment">#</span>
-<span id="L5" class="LineNr">   5 </span><span class="subxComment"># To run (from the subx/ directory):</span>
+<span id="L5" class="LineNr">   5 </span><span class="subxComment"># To run:</span>
 <span id="L6" class="LineNr">   6 </span><span class="subxComment">#   $ ./subx translate *.subx apps/pack.subx -o apps/pack</span>
 <span id="L7" class="LineNr">   7 </span><span class="subxComment">#   $ echo '05/add-to-EAX 0x20/imm32'  |./subx run apps/pack</span>
 <span id="L8" class="LineNr">   8 </span><span class="subxComment"># Expected output:</span>
diff --git a/html/apps/survey.subx.html b/html/apps/survey.subx.html
index 0ebd542a..de10a1e0 100644
--- a/html/apps/survey.subx.html
+++ b/html/apps/survey.subx.html
@@ -67,7 +67,7 @@ if ('onhashchange' in window) {
 <span id="L4" class="LineNr">   4 </span><span class="subxComment">#   a) replace labels</span>
 <span id="L5" class="LineNr">   5 </span><span class="subxComment">#   b) add segment headers with addresses and offsets correctly filled in</span>
 <span id="L6" class="LineNr">   6 </span><span class="subxComment">#</span>
-<span id="L7" class="LineNr">   7 </span><span class="subxComment"># To build (from the subx/ directory):</span>
+<span id="L7" class="LineNr">   7 </span><span class="subxComment"># To build:</span>
 <span id="L8" class="LineNr">   8 </span><span class="subxComment">#   $ ./subx translate *.subx apps/survey.subx -o apps/survey</span>
 <span id="L9" class="LineNr">   9 </span><span class="subxComment">#</span>
 <span id="L10" class="LineNr">  10 </span><span class="subxComment"># The expected input is a stream of bytes with segment headers, comments and</span>