about summary refs log tree commit diff stats
path: root/html/apps/parse-int.mu.html
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2020-07-10 23:44:10 -0700
committerKartik Agaram <vc@akkartik.com>2020-07-10 23:53:28 -0700
commitec73ed1230d75deb0f913a32617c9f1e0a5ca640 (patch)
tree55c0e38d65d43420f6ce481c864a9efdbd1cb445 /html/apps/parse-int.mu.html
parentc5a3f65502d6931a5fb888a5c5327c0659578a57 (diff)
downloadmu-ec73ed1230d75deb0f913a32617c9f1e0a5ca640.tar.gz
6631
Diffstat (limited to 'html/apps/parse-int.mu.html')
-rw-r--r--html/apps/parse-int.mu.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/html/apps/parse-int.mu.html b/html/apps/parse-int.mu.html
index 68bc12a7..e347f1a5 100644
--- a/html/apps/parse-int.mu.html
+++ b/html/apps/parse-int.mu.html
@@ -72,7 +72,7 @@ if ('onhashchange' in window) {
 <span id="L14" class="LineNr">14 </span>  compare n, <span class="Constant">1</span>
 <span id="L15" class="LineNr">15 </span>  <span class="Delimiter">{</span>
 <span id="L16" class="LineNr">16 </span>    <span class="PreProc">break-if-&gt;</span>
-<span id="L17" class="LineNr">17 </span>    <a href='../103screen.subx.html#L122'>print-string-to-screen</a> <span class="Constant">&quot;usage: <a href='parse-int.mu.html#L28'>parse-int</a> &lt;integer&gt;\n&quot;</span>
+<span id="L17" class="LineNr">17 </span>    <a href='../304screen.subx.html#L123'>print-string-to-screen</a> <span class="Constant">&quot;usage: <a href='parse-int.mu.html#L28'>parse-int</a> &lt;integer&gt;\n&quot;</span>
 <span id="L18" class="LineNr">18 </span>    exit-status <span class="SpecialChar">&lt;-</span> copy <span class="Constant">1</span>
 <span id="L19" class="LineNr">19 </span>    <span class="PreProc">break</span> $main-body
 <span id="L20" class="LineNr">20 </span>  <span class="Delimiter">}</span>
@@ -99,7 +99,7 @@ if ('onhashchange' in window) {
 <span id="L41" class="LineNr">41 </span>    <span class="PreProc">var</span> c/<span class="Constant">eax</span>: byte <span class="SpecialChar">&lt;-</span> copy <span class="Constant">0</span>
 <span id="L42" class="LineNr">42 </span>    c <span class="SpecialChar">&lt;-</span> copy-byte *tmp
 <span id="L43" class="LineNr">43 </span>    <span class="Comment">#</span>
-<span id="L44" class="LineNr">44 </span>    <span class="PreProc">var</span> digit/<span class="Constant">eax</span>: int <span class="SpecialChar">&lt;-</span> <a href='../075write-int-decimal.subx.html#L405'>to-decimal-digit</a> c
+<span id="L44" class="LineNr">44 </span>    <span class="PreProc">var</span> digit/<span class="Constant">eax</span>: int <span class="SpecialChar">&lt;-</span> <a href='../126write-int-decimal.subx.html#L405'>to-decimal-digit</a> c
 <span id="L45" class="LineNr">45 </span>    out <span class="SpecialChar">&lt;-</span> add digit
 <span id="L46" class="LineNr">46 </span>    i <span class="SpecialChar">&lt;-</span> increment
 <span id="L47" class="LineNr">47 </span>    <span class="PreProc">loop</span>