diff options
author | Kartik Agaram <vc@akkartik.com> | 2018-12-30 00:02:42 -0800 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2018-12-30 00:02:42 -0800 |
commit | 08a0eed699b8ea07d37163aba610c8e04feee003 (patch) | |
tree | aab05fd9b23ca4f5cfc6492ade82896f3ba5e4bb /html/subx/examples/ex9.subx.html | |
parent | ac07e589b3e912c704c2011d543f18b16712ff15 (diff) | |
download | mu-08a0eed699b8ea07d37163aba610c8e04feee003.tar.gz |
4891
Couple more tweaks to html rendering: a) SubX definitions no longer link redundantly to themselves. This long-standing issue turns out to be tractable to solve for SubX files since the syntax is so simple. b) Fix links to SubX definitions in other directories. I forgot that I have to always generate tags from the directory of the file being linkified. c) Fix link colors. Before we lost all syntax highlighting for functions and Globals. Now they maintain their colors, just add an underline.
Diffstat (limited to 'html/subx/examples/ex9.subx.html')
-rw-r--r-- | html/subx/examples/ex9.subx.html | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/html/subx/examples/ex9.subx.html b/html/subx/examples/ex9.subx.html index fa8732f7..1c654479 100644 --- a/html/subx/examples/ex9.subx.html +++ b/html/subx/examples/ex9.subx.html @@ -12,6 +12,7 @@ <!-- pre { font-family: monospace; color: #000000; background-color: #c6c6c6; } body { font-size:12pt; font-family: monospace; color: #000000; background-color: #c6c6c6; } +a { color:inherit; } * { font-size:12pt; font-size: 1em; } .subxComment { color: #005faf; } .subxS2Comment { color: #8a8a8a; } @@ -86,7 +87,7 @@ if ('onhashchange' in window) { <span id="L30" class="LineNr">30 </span> <span class="subxS2Comment"># . . push argv[1]</span> <span id="L31" class="LineNr">31 </span> ff 6/subop/push 1/mod/*+disp8 5/rm32/EBP <span class="Normal"> . </span> <span class="Normal"> . </span> <span class="Normal"> . </span> <span class="Normal"> . </span> 8/disp8 <span class="Normal"> . </span> <span class="subxComment"># push *(EBP+8)</span> <span id="L32" class="LineNr">32 </span> <span class="subxS2Comment"># . . call</span> -<span id="L33" class="LineNr">33 </span> e8/call ascii-difference/disp32 +<span id="L33" class="LineNr">33 </span> e8/call <a href='ex9.subx.html#L41'>ascii-difference</a>/disp32 <span id="L34" class="LineNr">34 </span> <span class="subxS2Comment"># . . discard args</span> <span id="L35" class="LineNr">35 </span> 81 0/subop/add 3/mod/direct 4/rm32/ESP <span class="Normal"> . </span> <span class="Normal"> . </span> <span class="Normal"> . </span> <span class="Normal"> . </span> <span class="Normal"> . </span> 8/imm32 <span class="subxComment"># add to ESP</span> <span id="L36" class="LineNr">36 </span> <span class="subxComment"># syscall(exit, EAX)</span> @@ -94,7 +95,7 @@ if ('onhashchange' in window) { <span id="L38" class="LineNr">38 </span> b8/copy-to-EAX 1/imm32/exit <span id="L39" class="LineNr">39 </span> cd/syscall 0x80/imm8 <span id="L40" class="LineNr">40 </span> -<span id="L41" class="LineNr">41 </span><span class="subxFunction">ascii-difference</span>: <span class="subxComment"># (s1, s2) : null-terminated ascii strings</span> +<span id="L41" class="LineNr">41 </span><span class="subxFunction"><a href='ex9.subx.html#L41'>ascii-difference</a></span>: <span class="subxComment"># (s1, s2) : null-terminated ascii strings</span> <span id="L42" class="LineNr">42 </span> <span class="subxComment"># a = first letter of s1 (ECX)</span> <span id="L43" class="LineNr">43 </span> 8b/copy 1/mod/*+disp8 4/rm32/sib 4/base/ESP 4/index/none 0/r32/EAX 4/disp8 <span class="Normal"> . </span> <span class="subxComment"># copy *(ESP+4) to EAX</span> <span id="L44" class="LineNr">44 </span> 8b/copy 0/mod/indirect 0/rm32/EAX <span class="Normal"> . </span> <span class="Normal"> . </span> <span class="Normal"> . </span> 0/r32/EAX <span class="Normal"> . </span> <span class="Normal"> . </span> <span class="subxComment"># copy *EAX to EAX</span> |