about summary refs log tree commit diff stats
path: root/html/linux/advent2020/4a.mu.html
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2021-06-26 20:55:36 -0700
committerKartik Agaram <vc@akkartik.com>2021-06-26 20:55:36 -0700
commit372367f59a897162912d0646158bdea1e07d6e66 (patch)
tree16cd7f70de3505f35fbc86ed2b7d3810cab0d148 /html/linux/advent2020/4a.mu.html
parentdc5a0acf3feea227d03a98cedf427d2aef462320 (diff)
downloadmu-372367f59a897162912d0646158bdea1e07d6e66.tar.gz
html: better highlighting for int registers
Diffstat (limited to 'html/linux/advent2020/4a.mu.html')
-rw-r--r--html/linux/advent2020/4a.mu.html27
1 files changed, 13 insertions, 14 deletions
diff --git a/html/linux/advent2020/4a.mu.html b/html/linux/advent2020/4a.mu.html
index df8cc64b..50008b4d 100644
--- a/html/linux/advent2020/4a.mu.html
+++ b/html/linux/advent2020/4a.mu.html
@@ -14,19 +14,18 @@ pre { white-space: pre-wrap; font-family: monospace; color: #000000; background-
 body { font-size:12pt; font-family: monospace; color: #000000; background-color: #ffffd7; }
 a { color:inherit; }
 * { font-size:12pt; font-size: 1em; }
-.muRegEcx { color: #af875f; }
-.muComment { color: #005faf; }
-.LineNr { }
-.muRegEdx { color: #878700; }
+.PreProc { color: #c000c0; }
+.muRegEdx { color: #af5f00; }
 .Special { color: #ff6060; }
-.muRegEsi { color: #87d787; }
-.muRegEdi { color: #87ffd7; }
+.LineNr { }
+.Constant { color: #008787; }
+.muRegEbx { color: #5f00ff; }
+.muRegEsi { color: #005faf; }
+.muRegEdi { color: #00af00; }
+.muRegEcx { color: #870000; }
 .Delimiter { color: #c000c0; }
 .muFunction { color: #af5f00; text-decoration: underline; }
-.muRegEbx { color: #8787af; }
-.Constant { color: #008787; }
-.PreProc { color: #c000c0; }
-.muRegEax { color: #875f00; }
+.muComment { color: #005faf; }
 -->
 </style>
 
@@ -84,13 +83,13 @@ if ('onhashchange' in window) {
 <span id="L20" class="LineNr">20 </span>    <a href='../106stream.subx.html#L17'>clear-stream</a> line
 <span id="L21" class="LineNr">21 </span>    <a href='../305keyboard.subx.html#L158'>read-line-from-real-keyboard</a> line
 <span id="L22" class="LineNr">22 </span>    <span class="muComment"># if line is empty (not even a newline), quit</span>
-<span id="L23" class="LineNr">23 </span>    <span class="PreProc">var</span> done?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='../309stream.subx.html#L6'>stream-empty?</a> line
+<span id="L23" class="LineNr">23 </span>    <span class="PreProc">var</span> done?/eax: boolean <span class="Special">&lt;-</span> <a href='../309stream.subx.html#L6'>stream-empty?</a> line
 <span id="L24" class="LineNr">24 </span>    compare done?, <span class="Constant">0</span>/false
 <span id="L25" class="LineNr">25 </span>    <span class="PreProc">break-if-!=</span>
 <span id="L26" class="LineNr">26 </span>    <a href='../304screen.subx.html#L147'>print-stream-to-real-screen</a> line
 <span id="L27" class="LineNr">27 </span>    <span class="muComment"># if line has just a newline, process passport</span>
 <span id="L28" class="LineNr">28 </span>    <a href='../124next-token.subx.html#L464'>skip-chars-matching-whitespace</a> line
-<span id="L29" class="LineNr">29 </span>    <span class="PreProc">var</span> new-passport?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='../309stream.subx.html#L6'>stream-empty?</a> line
+<span id="L29" class="LineNr">29 </span>    <span class="PreProc">var</span> new-passport?/eax: boolean <span class="Special">&lt;-</span> <a href='../309stream.subx.html#L6'>stream-empty?</a> line
 <span id="L30" class="LineNr">30 </span>    <span class="Delimiter">{</span>
 <span id="L31" class="LineNr">31 </span>      compare new-passport?, <span class="Constant">0</span>/false
 <span id="L32" class="LineNr">32 </span>      <span class="PreProc">break-if-=</span>
@@ -107,13 +106,13 @@ if ('onhashchange' in window) {
 <span id="L43" class="LineNr">43 </span>    <span class="Delimiter">}</span>
 <span id="L44" class="LineNr">44 </span>    $main:word-loop: <span class="Delimiter">{</span>
 <span id="L45" class="LineNr">45 </span>      <a href='../127next-word.subx.html#L11'>next-word</a> line, slice
-<span id="L46" class="LineNr">46 </span>      <span class="PreProc">var</span> done?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='../123slice.subx.html#L9'>slice-empty?</a> slice
+<span id="L46" class="LineNr">46 </span>      <span class="PreProc">var</span> done?/eax: boolean <span class="Special">&lt;-</span> <a href='../123slice.subx.html#L9'>slice-empty?</a> slice
 <span id="L47" class="LineNr">47 </span>      compare done?, <span class="Constant">0</span>/false
 <span id="L48" class="LineNr">48 </span>      <span class="PreProc">break-if-!=</span>
 <span id="L49" class="LineNr">49 </span>      <a href='../405screen.mu.html#L169'>print-string</a> <span class="Constant">0</span>, <span class="Constant">&quot;  &quot;</span>
 <span id="L50" class="LineNr">50 </span>      <a href='../304screen.subx.html#L134'>print-slice-to-real-screen</a> slice
 <span id="L51" class="LineNr">51 </span>      <span class="muComment"># treat cid as optional</span>
-<span id="L52" class="LineNr">52 </span>      <span class="PreProc">var</span> optional?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='../123slice.subx.html#L487'>slice-starts-with?</a> slice, <span class="Constant">&quot;cid:&quot;</span>
+<span id="L52" class="LineNr">52 </span>      <span class="PreProc">var</span> optional?/eax: boolean <span class="Special">&lt;-</span> <a href='../123slice.subx.html#L487'>slice-starts-with?</a> slice, <span class="Constant">&quot;cid:&quot;</span>
 <span id="L53" class="LineNr">53 </span>      compare optional?, <span class="Constant">0</span>/false
 <span id="L54" class="LineNr">54 </span>      <span class="Delimiter">{</span>
 <span id="L55" class="LineNr">55 </span>        <span class="PreProc">break-if-!=</span>