about summary refs log tree commit diff stats
path: root/html/shell/read.mu.html
diff options
context:
space:
mode:
Diffstat (limited to 'html/shell/read.mu.html')
-rw-r--r--html/shell/read.mu.html6
1 files changed, 4 insertions, 2 deletions
diff --git a/html/shell/read.mu.html b/html/shell/read.mu.html
index ba9473f3..c25ebb64 100644
--- a/html/shell/read.mu.html
+++ b/html/shell/read.mu.html
@@ -18,6 +18,8 @@ a { color:inherit; }
 .Special { color: #ff6060; }
 .LineNr { }
 .Constant { color: #008787; }
+.muRegEax { color: #875f00; }
+.muRegEcx { color: #af875f; }
 .Delimiter { color: #c000c0; }
 .muFunction { color: #af5f00; text-decoration: underline; }
 .muComment { color: #005faf; }
@@ -60,9 +62,9 @@ if ('onhashchange' in window) {
 <span id="L2" class="LineNr"> 2 </span>  <span class="muComment"># TODO: we may be able to generate tokens lazily and drop this stream.</span>
 <span id="L3" class="LineNr"> 3 </span>  <span class="muComment"># Depends on how we implement indent-sensitivity and infix.</span>
 <span id="L4" class="LineNr"> 4 </span>  <span class="PreProc">var</span> tokens-storage: (stream <a href='cell.mu.html#L1'>cell</a> <span class="Constant">0x400</span>)
-<span id="L5" class="LineNr"> 5 </span>  <span class="PreProc">var</span> tokens/<span class="Constant">ecx</span>: (addr stream <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> address tokens-storage
+<span id="L5" class="LineNr"> 5 </span>  <span class="PreProc">var</span> tokens/<span class="muRegEcx">ecx</span>: (addr stream <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> address tokens-storage
 <span id="L6" class="LineNr"> 6 </span>  <a href='tokenize.mu.html#L5'>tokenize</a> in, tokens, trace
-<span id="L7" class="LineNr"> 7 </span>  <span class="PreProc">var</span> error?/<span class="Constant">eax</span>: boolean <span class="Special">&lt;-</span> <a href='trace.mu.html#L83'>has-errors?</a> trace
+<span id="L7" class="LineNr"> 7 </span>  <span class="PreProc">var</span> error?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='trace.mu.html#L94'>has-errors?</a> trace
 <span id="L8" class="LineNr"> 8 </span>  compare error?, <span class="Constant">0</span>/false
 <span id="L9" class="LineNr"> 9 </span>  <span class="Delimiter">{</span>
 <span id="L10" class="LineNr">10 </span>    <span class="PreProc">break-if-=</span>