about summary refs log tree commit diff stats
path: root/html/subx/examples/ex10.subx.html
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2018-12-30 20:24:37 -0800
committerKartik Agaram <vc@akkartik.com>2018-12-30 20:24:37 -0800
commit901ae474300d70bcc00e7e0b420ca87c8cbf6f55 (patch)
treeaf60b1c8c92bfc10a6bb6bd1082a765fcc718004 /html/subx/examples/ex10.subx.html
parent0474ec865af12cff08dd255954fbccf6d38085e6 (diff)
downloadmu-901ae474300d70bcc00e7e0b420ca87c8cbf6f55.tar.gz
4899
Bug in my linkify tool introduced in commit 4891.
Diffstat (limited to 'html/subx/examples/ex10.subx.html')
-rw-r--r--html/subx/examples/ex10.subx.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/html/subx/examples/ex10.subx.html b/html/subx/examples/ex10.subx.html
index 329f698d..49383f99 100644
--- a/html/subx/examples/ex10.subx.html
+++ b/html/subx/examples/ex10.subx.html
@@ -92,7 +92,7 @@ if ('onhashchange' in window) {
 <span id="L34" class="LineNr">34 </span>
 <span id="L35" class="LineNr">35 </span><span class="subxComment"># compare two null-terminated ascii strings</span>
 <span id="L36" class="LineNr">36 </span><span class="subxComment"># reason for the name: the only place we should have null-terminated ascii strings is from commandline args</span>
-<span id="L37" class="LineNr">37 </span><span class="subxFunction"><a href='ex10.subx.html#L37'>argv-equal</a></span>:  <span class="subxComment"># (s1, s2) : null-terminated ascii strings -&gt; EAX : boolean</span>
+<span id="L37" class="LineNr">37 </span><span class="subxFunction">argv-equal</span>:  <span class="subxComment"># (s1, s2) : null-terminated ascii strings -&gt; EAX : boolean</span>
 <span id="L38" class="LineNr">38 </span>    <span class="subxComment"># initialize s1 (ECX) and s2 (EDX)</span>
 <span id="L39" class="LineNr">39 </span>    8b/copy                         1/mod/*+disp8   4/rm32/sib    4/base/ESP  4/index/none <span class="Normal"> . </span>          1/r32/ECX   4/disp8        <span class="Normal"> . </span>                <span class="subxComment"># copy *(ESP+4) to ECX</span>
 <span id="L40" class="LineNr">40 </span>    8b/copy                         1/mod/*+disp8   4/rm32/sib    4/base/ESP  4/index/none <span class="Normal"> . </span>          2/r32/EDX   8/disp8        <span class="Normal"> . </span>                <span class="subxComment"># copy *(ESP+8) to EDX</span>