about summary refs log tree commit diff stats
path: root/html/mandelbrot.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/mandelbrot.mu.html
parentdc5a0acf3feea227d03a98cedf427d2aef462320 (diff)
downloadmu-372367f59a897162912d0646158bdea1e07d6e66.tar.gz
html: better highlighting for int registers
Diffstat (limited to 'html/mandelbrot.mu.html')
-rw-r--r--html/mandelbrot.mu.html41
1 files changed, 20 insertions, 21 deletions
diff --git a/html/mandelbrot.mu.html b/html/mandelbrot.mu.html
index 14324ce4..013dcab9 100644
--- a/html/mandelbrot.mu.html
+++ b/html/mandelbrot.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; }
-.muRegEsi { color: #87d787; }
-.muComment { color: #005faf; }
-.LineNr { }
-.muRegEdi { color: #87ffd7; }
-.muRegEcx { color: #af875f; }
+.PreProc { color: #c000c0; }
+.muRegEdx { color: #af5f00; }
 .Special { color: #ff6060; }
-.muRegEax { color: #875f00; }
+.LineNr { }
+.muRegEsi { color: #005faf; }
+.muRegEbx { color: #5f00ff; }
+.Constant { color: #008787; }
+.muRegEdi { color: #00af00; }
+.muRegEcx { color: #870000; }
 .Delimiter { color: #c000c0; }
 .muFunction { color: #af5f00; text-decoration: underline; }
-.muRegEbx { color: #8787af; }
-.Constant { color: #008787; }
-.PreProc { color: #c000c0; }
-.muRegEdx { color: #878700; }
+.muComment { color: #005faf; }
 -->
 </style>
 
@@ -82,11 +81,11 @@ if ('onhashchange' in window) {
 <span id="L18" class="LineNr"> 18 </span>  <span class="muComment"># Initially the viewport shows a section of the scene 4 units wide.</span>
 <span id="L19" class="LineNr"> 19 </span>  <span class="muComment"># scene-width-scale = 0.5</span>
 <span id="L20" class="LineNr"> 20 </span>  <span class="PreProc">var</span> scene-width-scale: float
-<span id="L21" class="LineNr"> 21 </span>  <span class="PreProc">var</span> dest/<span class="muRegEax">eax</span>: (addr float) <span class="Special">&lt;-</span> address scene-width-scale
+<span id="L21" class="LineNr"> 21 </span>  <span class="PreProc">var</span> dest/eax: (addr float) <span class="Special">&lt;-</span> address scene-width-scale
 <span id="L22" class="LineNr"> 22 </span>  <a href='408float.mu.html#L3'>fill-in-rational</a> dest, <span class="Constant">1</span>, <span class="Constant">2</span>
 <span id="L23" class="LineNr"> 23 </span>  <span class="muComment"># scene-width = 4</span>
 <span id="L24" class="LineNr"> 24 </span>  <span class="PreProc">var</span> four: float
-<span id="L25" class="LineNr"> 25 </span>  <span class="PreProc">var</span> dest/<span class="muRegEax">eax</span>: (addr float) <span class="Special">&lt;-</span> address four
+<span id="L25" class="LineNr"> 25 </span>  <span class="PreProc">var</span> dest/eax: (addr float) <span class="Special">&lt;-</span> address four
 <span id="L26" class="LineNr"> 26 </span>  <a href='408float.mu.html#L3'>fill-in-rational</a> dest, <span class="Constant">4</span>, <span class="Constant">1</span>
 <span id="L27" class="LineNr"> 27 </span>  <span class="PreProc">var</span> scene-width/<span class="Constant">xmm3</span>: float <span class="Special">&lt;-</span> copy four
 <span id="L28" class="LineNr"> 28 </span>  <span class="Delimiter">{</span>
@@ -103,7 +102,7 @@ if ('onhashchange' in window) {
 <span id="L39" class="LineNr"> 39 </span><span class="Delimiter">}</span>
 <span id="L40" class="LineNr"> 40 </span>
 <span id="L41" class="LineNr"> 41 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='mandelbrot.mu.html#L41'>mandelbrot</a></span> <a href='500fake-screen.mu.html#L14'>screen</a>: (addr <a href='500fake-screen.mu.html#L14'>screen</a>), scene-cx: float, scene-cy: float, scene-width: float <span class="Delimiter">{</span>
-<span id="L42" class="LineNr"> 42 </span>  <span class="PreProc">var</span> a/<span class="muRegEax">eax</span>: int <span class="Special">&lt;-</span> copy <span class="Constant">0</span>
+<span id="L42" class="LineNr"> 42 </span>  <span class="PreProc">var</span> a/eax: int <span class="Special">&lt;-</span> copy <span class="Constant">0</span>
 <span id="L43" class="LineNr"> 43 </span>  <span class="PreProc">var</span> b/<span class="muRegEcx">ecx</span>: int <span class="Special">&lt;-</span> copy <span class="Constant">0</span>
 <span id="L44" class="LineNr"> 44 </span>  a, b <span class="Special">&lt;-</span> <a href='500fake-screen.mu.html#L86'>screen-size</a> <a href='500fake-screen.mu.html#L14'>screen</a>
 <span id="L45" class="LineNr"> 45 </span>  <span class="PreProc">var</span> width/<span class="muRegEsi">esi</span>: int <span class="Special">&lt;-</span> copy a
@@ -120,7 +119,7 @@ if ('onhashchange' in window) {
 <span id="L56" class="LineNr"> 56 </span>      compare x, width
 <span id="L57" class="LineNr"> 57 </span>      <span class="PreProc">break-if-&gt;=</span>
 <span id="L58" class="LineNr"> 58 </span>      <span class="PreProc">var</span> real/<span class="Constant">xmm0</span>: float <span class="Special">&lt;-</span> <a href='mandelbrot.mu.html#L138'>viewport-to-real</a> x, width, scene-cx, scene-width
-<span id="L59" class="LineNr"> 59 </span>      <span class="PreProc">var</span> iterations/<span class="muRegEax">eax</span>: int <span class="Special">&lt;-</span> <a href='mandelbrot.mu.html#L73'>mandelbrot-iterations-for-point</a> real, imaginary, <span class="Constant">0x400</span>/max
+<span id="L59" class="LineNr"> 59 </span>      <span class="PreProc">var</span> iterations/eax: int <span class="Special">&lt;-</span> <a href='mandelbrot.mu.html#L73'>mandelbrot-iterations-for-point</a> real, imaginary, <span class="Constant">0x400</span>/max
 <span id="L60" class="LineNr"> 60 </span>      iterations <span class="Special">&lt;-</span> shift-right <span class="Constant">3</span>
 <span id="L61" class="LineNr"> 61 </span>      <span class="PreProc">var</span> color/<span class="muRegEdx">edx</span>: int <span class="Special">&lt;-</span> copy <span class="Constant">0</span>
 <span id="L62" class="LineNr"> 62 </span>      iterations, color <span class="Special">&lt;-</span> <a href='314divide.subx.html#L3'>integer-divide</a> iterations, <span class="Constant">0x18</span>/<span class="Constant">24</span>/size-of-cycle-0
@@ -134,13 +133,13 @@ if ('onhashchange' in window) {
 <span id="L70" class="LineNr"> 70 </span>  <span class="Delimiter">}</span>
 <span id="L71" class="LineNr"> 71 </span><span class="Delimiter">}</span>
 <span id="L72" class="LineNr"> 72 </span>
-<span id="L73" class="LineNr"> 73 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='mandelbrot.mu.html#L73'>mandelbrot-iterations-for-point</a></span> real: float, imaginary: float, max: int<span class="PreProc"> -&gt; </span>_/<span class="muRegEax">eax</span>: int <span class="Delimiter">{</span>
+<span id="L73" class="LineNr"> 73 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='mandelbrot.mu.html#L73'>mandelbrot-iterations-for-point</a></span> real: float, imaginary: float, max: int<span class="PreProc"> -&gt; </span>_/eax: int <span class="Delimiter">{</span>
 <span id="L74" class="LineNr"> 74 </span>  <span class="PreProc">var</span> zero: float
 <span id="L75" class="LineNr"> 75 </span>  <span class="PreProc">var</span> x/<span class="Constant">xmm0</span>: float <span class="Special">&lt;-</span> copy zero
 <span id="L76" class="LineNr"> 76 </span>  <span class="PreProc">var</span> y/<span class="Constant">xmm1</span>: float <span class="Special">&lt;-</span> copy zero
 <span id="L77" class="LineNr"> 77 </span>  <span class="PreProc">var</span> iterations/<span class="muRegEcx">ecx</span>: int <span class="Special">&lt;-</span> copy <span class="Constant">0</span>
 <span id="L78" class="LineNr"> 78 </span>  <span class="Delimiter">{</span>
-<span id="L79" class="LineNr"> 79 </span>    <span class="PreProc">var</span> done?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='mandelbrot.mu.html#L94'>mandelbrot-done?</a> x, y
+<span id="L79" class="LineNr"> 79 </span>    <span class="PreProc">var</span> done?/eax: boolean <span class="Special">&lt;-</span> <a href='mandelbrot.mu.html#L94'>mandelbrot-done?</a> x, y
 <span id="L80" class="LineNr"> 80 </span>    compare done?, <span class="Constant">0</span>/false
 <span id="L81" class="LineNr"> 81 </span>    <span class="PreProc">break-if-!=</span>
 <span id="L82" class="LineNr"> 82 </span>    compare iterations, max
@@ -155,7 +154,7 @@ if ('onhashchange' in window) {
 <span id="L91" class="LineNr"> 91 </span>  <span class="PreProc">return</span> iterations
 <span id="L92" class="LineNr"> 92 </span><span class="Delimiter">}</span>
 <span id="L93" class="LineNr"> 93 </span>
-<span id="L94" class="LineNr"> 94 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='mandelbrot.mu.html#L94'>mandelbrot-done?</a></span> x: float, y: float<span class="PreProc"> -&gt; </span>_/<span class="muRegEax">eax</span>: boolean <span class="Delimiter">{</span>
+<span id="L94" class="LineNr"> 94 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='mandelbrot.mu.html#L94'>mandelbrot-done?</a></span> x: float, y: float<span class="PreProc"> -&gt; </span>_/eax: boolean <span class="Delimiter">{</span>
 <span id="L95" class="LineNr"> 95 </span>  <span class="muComment"># x*x + y*y &gt; 4</span>
 <span id="L96" class="LineNr"> 96 </span>  <span class="PreProc">var</span> x2/<span class="Constant">xmm0</span>: float <span class="Special">&lt;-</span> copy x
 <span id="L97" class="LineNr"> 97 </span>  x2 <span class="Special">&lt;-</span> multiply x
@@ -163,7 +162,7 @@ if ('onhashchange' in window) {
 <span id="L99" class="LineNr"> 99 </span>  y2 <span class="Special">&lt;-</span> multiply y
 <span id="L100" class="LineNr">100 </span>  <span class="PreProc">var</span> sum/<span class="Constant">xmm0</span>: float <span class="Special">&lt;-</span> copy x2
 <span id="L101" class="LineNr">101 </span>  sum <span class="Special">&lt;-</span> add y2
-<span id="L102" class="LineNr">102 </span>  <span class="PreProc">var</span> four/<span class="muRegEax">eax</span>: int <span class="Special">&lt;-</span> copy <span class="Constant">4</span>
+<span id="L102" class="LineNr">102 </span>  <span class="PreProc">var</span> four/eax: int <span class="Special">&lt;-</span> copy <span class="Constant">4</span>
 <span id="L103" class="LineNr">103 </span>  <span class="PreProc">var</span> four-f/<span class="Constant">xmm1</span>: float <span class="Special">&lt;-</span> convert four
 <span id="L104" class="LineNr">104 </span>  compare sum, four-f
 <span id="L105" class="LineNr">105 </span>  <span class="Delimiter">{</span>
@@ -187,7 +186,7 @@ if ('onhashchange' in window) {
 <span id="L123" class="LineNr">123 </span>
 <span id="L124" class="LineNr">124 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='mandelbrot.mu.html#L124'>mandelbrot-y</a></span> x: float, y: float, imaginary: float<span class="PreProc"> -&gt; </span>_/<span class="Constant">xmm3</span>: float <span class="Delimiter">{</span>
 <span id="L125" class="LineNr">125 </span>  <span class="muComment"># 2*x*y + imaginary</span>
-<span id="L126" class="LineNr">126 </span>  <span class="PreProc">var</span> two/<span class="muRegEax">eax</span>: int <span class="Special">&lt;-</span> copy <span class="Constant">2</span>
+<span id="L126" class="LineNr">126 </span>  <span class="PreProc">var</span> two/eax: int <span class="Special">&lt;-</span> copy <span class="Constant">2</span>
 <span id="L127" class="LineNr">127 </span>  <span class="PreProc">var</span> result/<span class="Constant">xmm0</span>: float <span class="Special">&lt;-</span> convert two
 <span id="L128" class="LineNr">128 </span>  result <span class="Special">&lt;-</span> multiply x
 <span id="L129" class="LineNr">129 </span>  result <span class="Special">&lt;-</span> multiply y
@@ -210,7 +209,7 @@ if ('onhashchange' in window) {
 <span id="L146" class="LineNr">146 </span>  <span class="PreProc">var</span> width-f/<span class="Constant">xmm1</span>: float <span class="Special">&lt;-</span> convert width
 <span id="L147" class="LineNr">147 </span>  result <span class="Special">&lt;-</span> divide width-f
 <span id="L148" class="LineNr">148 </span>  result <span class="Special">&lt;-</span> add scene-cx
-<span id="L149" class="LineNr">149 </span>  <span class="PreProc">var</span> two/<span class="muRegEax">eax</span>: int <span class="Special">&lt;-</span> copy <span class="Constant">2</span>
+<span id="L149" class="LineNr">149 </span>  <span class="PreProc">var</span> two/eax: int <span class="Special">&lt;-</span> copy <span class="Constant">2</span>
 <span id="L150" class="LineNr">150 </span>  <span class="PreProc">var</span> two-f/<span class="Constant">xmm2</span>: float <span class="Special">&lt;-</span> convert two
 <span id="L151" class="LineNr">151 </span>  <span class="PreProc">var</span> half-scene-width/<span class="Constant">xmm1</span>: float <span class="Special">&lt;-</span> copy scene-width
 <span id="L152" class="LineNr">152 </span>  half-scene-width <span class="Special">&lt;-</span> divide two-f
@@ -230,7 +229,7 @@ if ('onhashchange' in window) {
 <span id="L166" class="LineNr">166 </span>  <span class="PreProc">var</span> width-f/<span class="Constant">xmm1</span>: float <span class="Special">&lt;-</span> convert width
 <span id="L167" class="LineNr">167 </span>  result <span class="Special">&lt;-</span> divide width-f
 <span id="L168" class="LineNr">168 </span>  result <span class="Special">&lt;-</span> add scene-cy
-<span id="L169" class="LineNr">169 </span>  <span class="PreProc">var</span> two/<span class="muRegEax">eax</span>: int <span class="Special">&lt;-</span> copy <span class="Constant">2</span>
+<span id="L169" class="LineNr">169 </span>  <span class="PreProc">var</span> two/eax: int <span class="Special">&lt;-</span> copy <span class="Constant">2</span>
 <span id="L170" class="LineNr">170 </span>  <span class="PreProc">var</span> two-f/<span class="Constant">xmm2</span>: float <span class="Special">&lt;-</span> convert two
 <span id="L171" class="LineNr">171 </span>  <span class="PreProc">var</span> second-term/<span class="Constant">xmm1</span>: float <span class="Special">&lt;-</span> copy scene-width
 <span id="L172" class="LineNr">172 </span>  second-term <span class="Special">&lt;-</span> divide two-f