about summary refs log tree commit diff stats
path: root/html/013direct_addressing.cc.html
diff options
context:
space:
mode:
Diffstat (limited to 'html/013direct_addressing.cc.html')
-rw-r--r--html/013direct_addressing.cc.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/html/013direct_addressing.cc.html b/html/013direct_addressing.cc.html
index 8256bc5b..d99526d4 100644
--- a/html/013direct_addressing.cc.html
+++ b/html/013direct_addressing.cc.html
@@ -1047,7 +1047,7 @@ if ('onhashchange' in window) {
 <span id="L986" class="LineNr"> 986 </span>  <span class="Normal">const</span> <span class="Normal">uint8_t</span> rsrc = <span class="Delimiter">(</span>modrm&gt;&gt;<span class="Constant">3</span><span class="Delimiter">)</span>&amp;<span class="Constant">0x7</span><span class="Delimiter">;</span>
 <span id="L987" class="LineNr"> 987 </span>  <a href='003trace.cc.html#L96'>trace</a><span class="Delimiter">(</span><span class="Special">Callstack_depth</span>+<span class="Constant">1</span><span class="Delimiter">,</span> <span class="Constant">&quot;run&quot;</span><span class="Delimiter">)</span> &lt;&lt; <span class="Constant">&quot;copy &quot;</span> &lt;&lt; <a href='013direct_addressing.cc.html#L136'>rname</a><span class="Delimiter">(</span>rsrc<span class="Delimiter">)</span> &lt;&lt; <span class="Constant">&quot; to r/m32&quot;</span> &lt;&lt; end<span class="Delimiter">();</span>
 <span id="L988" class="LineNr"> 988 </span>  <span class="Normal">int32_t</span>* dest = <a href='013direct_addressing.cc.html#L101'>effective_address</a><span class="Delimiter">(</span>modrm<span class="Delimiter">);</span>
-<span id="L989" class="LineNr"> 989 </span>  *dest = <span class="Special"><a href='010---vm.cc.html#L25'>Reg</a></span>[rsrc]<span class="Delimiter">.</span>i<span class="Delimiter">;</span>
+<span id="L989" class="LineNr"> 989 </span>  *dest = <span class="Special"><a href='010---vm.cc.html#L25'>Reg</a></span>[rsrc]<span class="Delimiter">.</span>i<span class="Delimiter">;</span>  <span class="Comment">// Write multiple elements of vector&lt;uint8_t&gt; at once. Assumes sizeof(int) == 4 on the host as well.</span>
 <span id="L990" class="LineNr"> 990 </span>  <a href='003trace.cc.html#L96'>trace</a><span class="Delimiter">(</span><span class="Special">Callstack_depth</span>+<span class="Constant">1</span><span class="Delimiter">,</span> <span class="Constant">&quot;run&quot;</span><span class="Delimiter">)</span> &lt;&lt; <span class="Constant">&quot;storing 0x&quot;</span> &lt;&lt; <a href='010---vm.cc.html#L395'>HEXWORD</a> &lt;&lt; *dest &lt;&lt; end<span class="Delimiter">();</span>
 <span id="L991" class="LineNr"> 991 </span>  <span class="Identifier">break</span><span class="Delimiter">;</span>
 <span id="L992" class="LineNr"> 992 </span><span class="Delimiter">}</span>