about summary refs log tree commit diff stats
path: root/html/apps/tile/table.mu.html
diff options
context:
space:
mode:
Diffstat (limited to 'html/apps/tile/table.mu.html')
-rw-r--r--html/apps/tile/table.mu.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/html/apps/tile/table.mu.html b/html/apps/tile/table.mu.html
index 41f1f542..1f07d3b2 100644
--- a/html/apps/tile/table.mu.html
+++ b/html/apps/tile/table.mu.html
@@ -99,7 +99,7 @@ if ('onhashchange' in window) {
 <span id="L40" class="LineNr"> 40 </span>      <a href='../../120allocate.subx.html#L66'>allocate</a> dest-val-ah
 <span id="L41" class="LineNr"> 41 </span>      <span class="PreProc">var</span> dest-val/<span class="Constant">eax</span>: (addr <a href='data.mu.html#L37'>value</a>) <span class="SpecialChar">&lt;-</span> <a href='../../120allocate.subx.html#L256'>lookup</a> *dest-val-ah
 <span id="L42" class="LineNr"> 42 </span><span class="CommentedCode">#?       print-string 0, &quot;deep copy value {\n&quot;</span>
-<span id="L43" class="LineNr"> 43 </span>      <a href='value.mu.html#L336'>deep-copy-value</a> src-val, dest-val
+<span id="L43" class="LineNr"> 43 </span>      <a href='value.mu.html#L338'>deep-copy-value</a> src-val, dest-val
 <span id="L44" class="LineNr"> 44 </span><span class="CommentedCode">#?       print-string 0, &quot;}\n&quot;</span>
 <span id="L45" class="LineNr"> 45 </span>    <span class="Delimiter">}</span>
 <span id="L46" class="LineNr"> 46 </span>    i <span class="SpecialChar">&lt;-</span> increment
@@ -142,15 +142,15 @@ if ('onhashchange' in window) {
 <span id="L83" class="LineNr"> 83 </span>  <span class="PreProc">return</span> <a href='data.mu.html#L70'>result</a>
 <span id="L84" class="LineNr"> 84 </span><span class="Delimiter">}</span>
 <span id="L85" class="LineNr"> 85 </span>
-<span id="L86" class="LineNr"> 86 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='table.mu.html#L86'>make-int-binding</a></span> _self: (addr <a href='data.mu.html#L52'>bind</a>), key: (addr handle array byte), _val: int <span class="Delimiter">{</span>
+<span id="L86" class="LineNr"> 86 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='table.mu.html#L86'>make-number-binding</a></span> _self: (addr <a href='data.mu.html#L52'>bind</a>), key: (addr handle array byte), _val: float <span class="Delimiter">{</span>
 <span id="L87" class="LineNr"> 87 </span>  <span class="PreProc">var</span> self/<span class="Constant">esi</span>: (addr <a href='data.mu.html#L52'>bind</a>) <span class="SpecialChar">&lt;-</span> copy _self
 <span id="L88" class="LineNr"> 88 </span>  <span class="PreProc">var</span> dest/<span class="Constant">eax</span>: (addr handle array byte) <span class="SpecialChar">&lt;-</span> <a href='../../131table.subx.html#L26'>get</a> self, key
 <span id="L89" class="LineNr"> 89 </span>  copy-object key, dest
 <span id="L90" class="LineNr"> 90 </span>  <span class="PreProc">var</span> dest2/<span class="Constant">eax</span>: (addr handle <a href='data.mu.html#L37'>value</a>) <span class="SpecialChar">&lt;-</span> <a href='../../131table.subx.html#L26'>get</a> self, <a href='data.mu.html#L37'>value</a>
 <span id="L91" class="LineNr"> 91 </span>  <a href='../../120allocate.subx.html#L66'>allocate</a> dest2
 <span id="L92" class="LineNr"> 92 </span>  <span class="PreProc">var</span> dest3/<span class="Constant">eax</span>: (addr <a href='data.mu.html#L37'>value</a>) <span class="SpecialChar">&lt;-</span> <a href='../../120allocate.subx.html#L256'>lookup</a> *dest2
-<span id="L93" class="LineNr"> 93 </span>  <span class="PreProc">var</span> dest4/<span class="Constant">eax</span>: (addr int) <span class="SpecialChar">&lt;-</span> <a href='../../131table.subx.html#L26'>get</a> dest3, int-data
-<span id="L94" class="LineNr"> 94 </span>  <span class="PreProc">var</span> val/<span class="Constant">ecx</span>: int <span class="SpecialChar">&lt;-</span> copy _val
+<span id="L93" class="LineNr"> 93 </span>  <span class="PreProc">var</span> dest4/<span class="Constant">eax</span>: (addr float) <span class="SpecialChar">&lt;-</span> <a href='../../131table.subx.html#L26'>get</a> dest3, number-data
+<span id="L94" class="LineNr"> 94 </span>  <span class="PreProc">var</span> val/<span class="Constant">xmm0</span>: float <span class="SpecialChar">&lt;-</span> copy _val
 <span id="L95" class="LineNr"> 95 </span>  copy-to *dest4, val
 <span id="L96" class="LineNr"> 96 </span><span class="Delimiter">}</span>
 <span id="L97" class="LineNr"> 97 </span>