about summary refs log tree commit diff stats
path: root/html
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2021-05-09 09:46:46 -0700
committerKartik Agaram <vc@akkartik.com>2021-05-09 09:46:46 -0700
commit96b6d623a6f1160fc6df1406844d7868b66cc659 (patch)
tree3b6c940b882015fbd6370cd54ff01e84da4e1d24 /html
parentd91595e31c869aa6099a88caafbad4fc5c0c1b70 (diff)
downloadmu-96b6d623a6f1160fc6df1406844d7868b66cc659.tar.gz
.
Diffstat (limited to 'html')
-rw-r--r--html/mandelbrot-fixed.mu.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/html/mandelbrot-fixed.mu.html b/html/mandelbrot-fixed.mu.html
index ed2dfbe9..aa464470 100644
--- a/html/mandelbrot-fixed.mu.html
+++ b/html/mandelbrot-fixed.mu.html
@@ -140,9 +140,9 @@ if ('onhashchange' in window) {
 <span id="L81" class="LineNr"> 81 </span>
 <span id="L82" class="LineNr"> 82 </span><span class="muComment"># special routines for multiplying and dividing fixed-point numbers</span>
 <span id="L83" class="LineNr"> 83 </span>
-<span id="L84" class="LineNr"> 84 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='mandelbrot-fixed.mu.html#L84'>multiply-fixed</a></span> a: int, b: int<span class="PreProc"> -&gt; </span>_/<span class="Constant">eax</span>: int <span class="Delimiter">{</span>
-<span id="L85" class="LineNr"> 85 </span>  <span class="PreProc">var</span> result/<span class="Constant">eax</span>: int <span class="Special">&lt;-</span> copy a
-<span id="L86" class="LineNr"> 86 </span>  result <span class="Special">&lt;-</span> multiply b
+<span id="L84" class="LineNr"> 84 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='mandelbrot-fixed.mu.html#L84'>multiply-fixed</a></span> a-f: int, b-f: int<span class="PreProc"> -&gt; </span>_/<span class="Constant">eax</span>: int <span class="Delimiter">{</span>
+<span id="L85" class="LineNr"> 85 </span>  <span class="PreProc">var</span> result/<span class="Constant">eax</span>: int <span class="Special">&lt;-</span> copy a-f
+<span id="L86" class="LineNr"> 86 </span>  result <span class="Special">&lt;-</span> multiply b-f
 <span id="L87" class="LineNr"> 87 </span>  <span class="Delimiter">{</span>
 <span id="L88" class="LineNr"> 88 </span>    <span class="PreProc">break-if-not-overflow</span>
 <span id="L89" class="LineNr"> 89 </span>    <a href='501draw-text.mu.html#L481'>abort</a> <span class="Constant">&quot;multiply-fixed: overflow&quot;</span>