about summary refs log tree commit diff stats
path: root/html/linux/ex2.mu.html
diff options
context:
space:
mode:
Diffstat (limited to 'html/linux/ex2.mu.html')
-rw-r--r--html/linux/ex2.mu.html17
1 files changed, 8 insertions, 9 deletions
diff --git a/html/linux/ex2.mu.html b/html/linux/ex2.mu.html
index 272c7f97..5c3da3c3 100644
--- a/html/linux/ex2.mu.html
+++ b/html/linux/ex2.mu.html
@@ -14,16 +14,15 @@ 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; }
-.muComment { color: #005faf; }
-.LineNr { }
-.muRegEcx { color: #af875f; }
+.PreProc { color: #c000c0; }
 .Special { color: #ff6060; }
-.muRegEax { color: #875f00; }
+.LineNr { }
+.muRegEbx { color: #5f00ff; }
+.Constant { color: #008787; }
+.muRegEcx { color: #870000; }
 .Delimiter { color: #c000c0; }
 .muFunction { color: #af5f00; text-decoration: underline; }
-.muRegEbx { color: #8787af; }
-.Constant { color: #008787; }
-.PreProc { color: #c000c0; }
+.muComment { color: #005faf; }
 -->
 </style>
 
@@ -69,11 +68,11 @@ if ('onhashchange' in window) {
 <span id="L8" class="LineNr"> 8 </span><span class="muComment">#   7</span>
 <span id="L9" class="LineNr"> 9 </span>
 <span id="L10" class="LineNr">10 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='ex2.mu.html#L10'>main</a></span><span class="PreProc"> -&gt; </span>_/<span class="muRegEbx">ebx</span>: int <span class="Delimiter">{</span>
-<span id="L11" class="LineNr">11 </span>  <span class="PreProc">var</span> result/<span class="muRegEax">eax</span>: int <span class="Special">&lt;-</span> <a href='ex2.mu.html#L15'>do-add</a> <span class="Constant">3</span> <span class="Constant">4</span>
+<span id="L11" class="LineNr">11 </span>  <span class="PreProc">var</span> result/eax: int <span class="Special">&lt;-</span> <a href='ex2.mu.html#L15'>do-add</a> <span class="Constant">3</span> <span class="Constant">4</span>
 <span id="L12" class="LineNr">12 </span>  <span class="PreProc">return</span> result
 <span id="L13" class="LineNr">13 </span><span class="Delimiter">}</span>
 <span id="L14" class="LineNr">14 </span>
-<span id="L15" class="LineNr">15 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='ex2.mu.html#L15'>do-add</a></span> a: int, b: int<span class="PreProc"> -&gt; </span>_/<span class="muRegEax">eax</span>: int <span class="Delimiter">{</span>
+<span id="L15" class="LineNr">15 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='ex2.mu.html#L15'>do-add</a></span> a: int, b: int<span class="PreProc"> -&gt; </span>_/eax: int <span class="Delimiter">{</span>
 <span id="L16" class="LineNr">16 </span>  <span class="PreProc">var</span> result/<span class="muRegEcx">ecx</span>: int <span class="Special">&lt;-</span> copy a
 <span id="L17" class="LineNr">17 </span>  result <span class="Special">&lt;-</span> add b
 <span id="L18" class="LineNr">18 </span>  <span class="PreProc">return</span> result