about summary refs log tree commit diff stats
path: root/html/apps/tile/main.mu.html
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2020-11-29 13:36:32 -0800
committerKartik Agaram <vc@akkartik.com>2020-11-29 13:42:27 -0800
commit775f77c3346d231fc6133de2c7da2bb1e8ef0c2e (patch)
tree3daff158b0bf201c625abca645ce09014df51315 /html/apps/tile/main.mu.html
parent55dfa5b98530bdeae19f5e1f118634d9c774773f (diff)
downloadmu-775f77c3346d231fc6133de2c7da2bb1e8ef0c2e.tar.gz
7306
Diffstat (limited to 'html/apps/tile/main.mu.html')
-rw-r--r--html/apps/tile/main.mu.html28
1 files changed, 16 insertions, 12 deletions
diff --git a/html/apps/tile/main.mu.html b/html/apps/tile/main.mu.html
index bdb2d8c2..3cf767e0 100644
--- a/html/apps/tile/main.mu.html
+++ b/html/apps/tile/main.mu.html
@@ -117,7 +117,7 @@ if ('onhashchange' in window) {
 <span id="L58" class="LineNr"> 58 </span>    compare key, <span class="Constant">0x11</span>  <span class="muComment"># 'ctrl-q'</span>
 <span id="L59" class="LineNr"> 59 </span>    <span class="PreProc">break-if-=</span>
 <span id="L60" class="LineNr"> 60 </span>    <a href='environment.mu.html#L62'>process</a> env, key
-<span id="L61" class="LineNr"> 61 </span>    <a href='environment.mu.html#L965'>render</a> env
+<span id="L61" class="LineNr"> 61 </span>    <a href='environment.mu.html#L959'>render</a> env
 <span id="L62" class="LineNr"> 62 </span>    <span class="PreProc">loop</span>
 <span id="L63" class="LineNr"> 63 </span>  <span class="Delimiter">}</span>
 <span id="L64" class="LineNr"> 64 </span>  <a href='../../305keyboard.subx.html#L72'>enable-keyboard-type-mode</a>
@@ -138,7 +138,7 @@ if ('onhashchange' in window) {
 <span id="L79" class="LineNr"> 79 </span><span class="CommentedCode">#?   process env, 5  # ctrl-e: end of line</span>
 <span id="L80" class="LineNr"> 80 </span>  <a href='../../405screen.mu.html#L169'>print-string</a> <span class="Constant">0</span>, <span class="Constant">&quot;==\n&quot;</span>
 <span id="L81" class="LineNr"> 81 </span>  <a href='environment.mu.html#L62'>process</a> env, <span class="Constant">0xa</span>  <span class="muComment"># newline: expand</span>
-<span id="L82" class="LineNr"> 82 </span>  <a href='environment.mu.html#L965'>render</a> env
+<span id="L82" class="LineNr"> 82 </span>  <a href='environment.mu.html#L959'>render</a> env
 <span id="L83" class="LineNr"> 83 </span><span class="Delimiter">}</span>
 <span id="L84" class="LineNr"> 84 </span>
 <span id="L85" class="LineNr"> 85 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='main.mu.html#L85'>process-all</a></span> env: (addr <a href='environment.mu.html#L1'>environment</a>), cmds: (addr array byte) <span class="Delimiter">{</span>
@@ -183,20 +183,24 @@ if ('onhashchange' in window) {
 <span id="L124" class="LineNr">124 </span>    <span class="PreProc">var</span> stack-storage: <a href='value-stack.mu.html#L3'>value-stack</a>
 <span id="L125" class="LineNr">125 </span>    <span class="PreProc">var</span> stack/<span class="Constant">edi</span>: (addr <a href='value-stack.mu.html#L3'>value-stack</a>) <span class="SpecialChar">&lt;-</span> address stack-storage
 <span id="L126" class="LineNr">126 </span>    <a href='value-stack.mu.html#L8'>initialize-value-stack</a> stack, <span class="Constant">0x10</span>
-<span id="L127" class="LineNr">127 </span>    <a href='environment.mu.html#L952'>evaluate-environment</a> env, stack
+<span id="L127" class="LineNr">127 </span>    <a href='environment.mu.html#L946'>evaluate-environment</a> env, stack
 <span id="L128" class="LineNr">128 </span>    <span class="muComment"># print</span>
-<span id="L129" class="LineNr">129 </span>    <span class="PreProc">var</span> empty?/<span class="Constant">eax</span>: boolean <span class="SpecialChar">&lt;-</span> <a href='value-stack.mu.html#L106'>value-stack-empty?</a> stack
+<span id="L129" class="LineNr">129 </span>    <span class="PreProc">var</span> empty?/<span class="Constant">eax</span>: boolean <span class="SpecialChar">&lt;-</span> <a href='value-stack.mu.html#L108'>value-stack-empty?</a> stack
 <span id="L130" class="LineNr">130 </span>    <span class="Delimiter">{</span>
 <span id="L131" class="LineNr">131 </span>      compare empty?, <span class="Constant">0</span>  <span class="muComment"># false</span>
 <span id="L132" class="LineNr">132 </span>      <span class="PreProc">break-if-!=</span>
-<span id="L133" class="LineNr">133 </span>      <span class="PreProc">var</span> <a href='data.mu.html#L70'>result</a>/<span class="Constant">eax</span>: int <span class="SpecialChar">&lt;-</span> <a href='value-stack.mu.html#L88'>pop-int-from-value-stack</a> stack
-<span id="L134" class="LineNr">134 </span>      <a href='../../304screen.subx.html#L252'>print-int32-decimal-to-real-screen</a> <a href='data.mu.html#L70'>result</a>
-<span id="L135" class="LineNr">135 </span>      <a href='../../304screen.subx.html#L122'>print-string-to-real-screen</a> <span class="Constant">&quot;\n&quot;</span>
-<span id="L136" class="LineNr">136 </span>    <span class="Delimiter">}</span>
-<span id="L137" class="LineNr">137 </span>    <span class="muComment">#</span>
-<span id="L138" class="LineNr">138 </span>    <span class="PreProc">loop</span>
-<span id="L139" class="LineNr">139 </span>  <span class="Delimiter">}</span>
-<span id="L140" class="LineNr">140 </span><span class="Delimiter">}</span>
+<span id="L133" class="LineNr">133 </span>      <span class="PreProc">var</span> <a href='data.mu.html#L70'>result</a>/<span class="Constant">xmm0</span>: float <span class="SpecialChar">&lt;-</span> <a href='value-stack.mu.html#L88'>pop-number-from-value-stack</a> stack
+<span id="L134" class="LineNr">134 </span>      <a href='../../412print-float-decimal.mu.html#L159'>print-float-decimal-approximate</a> <span class="Constant">0</span>, <a href='data.mu.html#L70'>result</a>, <span class="Constant">3</span>
+<span id="L135" class="LineNr">135 </span>      <a href='../../405screen.mu.html#L169'>print-string</a> <span class="Constant">0</span>, <span class="Constant">&quot;\n&quot;</span>
+<span id="L136" class="LineNr">136 </span>      <a href='../../405screen.mu.html#L169'>print-string</a> <span class="Constant">0</span>, <span class="Constant">&quot;width: &quot;</span>
+<span id="L137" class="LineNr">137 </span>      <span class="PreProc">var</span> width/<span class="Constant">eax</span>: int <span class="SpecialChar">&lt;-</span> <a href='../../412print-float-decimal.mu.html#L519'>float-size</a> <a href='data.mu.html#L70'>result</a>, <span class="Constant">3</span>
+<span id="L138" class="LineNr">138 </span>      <a href='../../405screen.mu.html#L480'>print-int32-decimal</a> <span class="Constant">0</span>, width
+<span id="L139" class="LineNr">139 </span>      <a href='../../405screen.mu.html#L169'>print-string</a> <span class="Constant">0</span>, <span class="Constant">&quot;\n&quot;</span>
+<span id="L140" class="LineNr">140 </span>    <span class="Delimiter">}</span>
+<span id="L141" class="LineNr">141 </span>    <span class="muComment">#</span>
+<span id="L142" class="LineNr">142 </span>    <span class="PreProc">loop</span>
+<span id="L143" class="LineNr">143 </span>  <span class="Delimiter">}</span>
+<span id="L144" class="LineNr">144 </span><span class="Delimiter">}</span>
 </pre>
 </body>
 </html>
'n424' href='#n424'>424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466