about summary refs log tree commit diff stats
path: root/html/508circle.mu.html
diff options
context:
space:
mode:
Diffstat (limited to 'html/508circle.mu.html')
-rw-r--r--html/508circle.mu.html17
1 files changed, 8 insertions, 9 deletions
diff --git a/html/508circle.mu.html b/html/508circle.mu.html
index a7dcd829..91d8b440 100644
--- a/html/508circle.mu.html
+++ b/html/508circle.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; }
-.muRegEdx { color: #878700; }
-.muComment { color: #005faf; }
-.LineNr { }
-.muRegEcx { color: #af875f; }
+.PreProc { color: #c000c0; }
+.muRegEdx { color: #af5f00; }
 .Special { color: #ff6060; }
-.muRegEax { color: #875f00; }
+.LineNr { }
+.Constant { color: #008787; }
+.muRegEcx { color: #870000; }
 .Delimiter { color: #c000c0; }
 .muFunction { color: #af5f00; text-decoration: underline; }
-.Constant { color: #008787; }
-.PreProc { color: #c000c0; }
+.muComment { color: #005faf; }
 -->
 </style>
 
@@ -64,7 +63,7 @@ if ('onhashchange' in window) {
 <span id="L3" class="LineNr"> 3 </span>  <span class="PreProc">var</span> y: int
 <span id="L4" class="LineNr"> 4 </span>  <span class="PreProc">var</span> err: int
 <span id="L5" class="LineNr"> 5 </span>  <span class="muComment"># x = -r</span>
-<span id="L6" class="LineNr"> 6 </span>  <span class="PreProc">var</span> tmp/<span class="muRegEax">eax</span>: int <span class="Special">&lt;-</span> copy radius
+<span id="L6" class="LineNr"> 6 </span>  <span class="PreProc">var</span> tmp/eax: int <span class="Special">&lt;-</span> copy radius
 <span id="L7" class="LineNr"> 7 </span>  tmp <span class="Special">&lt;-</span> negate
 <span id="L8" class="LineNr"> 8 </span>  copy-to x, tmp
 <span id="L9" class="LineNr"> 9 </span>  <span class="muComment"># err = 2 - 2*r</span>
@@ -139,7 +138,7 @@ if ('onhashchange' in window) {
 <span id="L78" class="LineNr">78 </span><span class="Delimiter">}</span>
 <span id="L79" class="LineNr">79 </span>
 <span id="L80" class="LineNr">80 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='508circle.mu.html#L80'>draw-disc</a></span> <a href='500fake-screen.mu.html#L14'>screen</a>: (addr <a href='500fake-screen.mu.html#L14'>screen</a>), cx: int, cy: int, radius: int, color: int, border-color: int <span class="Delimiter">{</span>
-<span id="L81" class="LineNr">81 </span>  <span class="PreProc">var</span> r/<span class="muRegEax">eax</span>: int <span class="Special">&lt;-</span> copy <span class="Constant">0</span>
+<span id="L81" class="LineNr">81 </span>  <span class="PreProc">var</span> r/eax: int <span class="Special">&lt;-</span> copy <span class="Constant">0</span>
 <span id="L82" class="LineNr">82 </span>  <span class="Delimiter">{</span>
 <span id="L83" class="LineNr">83 </span>    compare r, radius
 <span id="L84" class="LineNr">84 </span>    <span class="PreProc">break-if-&gt;=</span>