about summary refs log tree commit diff stats
path: root/html/subx/011direct_addressing.cc.html
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2017-10-18 02:00:44 -0700
committerKartik K. Agaram <vc@akkartik.com>2017-10-18 02:00:44 -0700
commit9ecbcc552ee4646bdec8181bb6a8757a7b0fd700 (patch)
treeb12b8cde13c1ce0ce3149390fd681b0458d59f85 /html/subx/011direct_addressing.cc.html
parentcb4be511b7bae326802420125403ba91870f30c5 (diff)
downloadmu-9ecbcc552ee4646bdec8181bb6a8757a7b0fd700.tar.gz
4082
subx: correct a 'copy' ('mov') instruction as well to get its operand
right from the opcode.
Diffstat (limited to 'html/subx/011direct_addressing.cc.html')
-rw-r--r--html/subx/011direct_addressing.cc.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/html/subx/011direct_addressing.cc.html b/html/subx/011direct_addressing.cc.html
index a08f0e3f..f9508be6 100644
--- a/html/subx/011direct_addressing.cc.html
+++ b/html/subx/011direct_addressing.cc.html
@@ -300,7 +300,7 @@ if ('onhashchange' in window) {
 <span id="L235" class="LineNr">235 </span><span class="Normal">case</span> <span class="Constant">0x54</span>:
 <span id="L236" class="LineNr">236 </span><span class="Normal">case</span> <span class="Constant">0x55</span>:
 <span id="L237" class="LineNr">237 </span><span class="Normal">case</span> <span class="Constant">0x56</span>:
-<span id="L238" class="LineNr">238 </span><span class="Normal">case</span> <span class="Constant">0x57</span>: <span class="Delimiter">{</span>
+<span id="L238" class="LineNr">238 </span><span class="Normal">case</span> <span class="Constant">0x57</span>: <span class="Delimiter">{</span>  <span class="Comment">// push r32 to stack</span>
 <span id="L239" class="LineNr">239 </span>  <span class="Normal">uint8_t</span> <a href='010core.cc.html#L17'>reg</a> = op &amp; <span class="Constant">0x7</span><span class="Delimiter">;</span>
 <span id="L240" class="LineNr">240 </span>  <a href='003trace.cc.html#L160'>trace</a><span class="Delimiter">(</span><span class="Constant">2</span><span class="Delimiter">,</span> <span class="Constant">&quot;run&quot;</span><span class="Delimiter">)</span> &lt;&lt; <span class="Constant">&quot;push <a href='010core.cc.html#L17'>reg</a> &quot;</span> &lt;&lt; <a href='010core.cc.html#L232'>NUM</a><span class="Delimiter">(</span><a href='010core.cc.html#L17'>reg</a><span class="Delimiter">)</span> &lt;&lt; <a href='003trace.cc.html#L184'>end</a><span class="Delimiter">();</span>
 <span id="L241" class="LineNr">241 </span>  <span class="Normal">const</span> <span class="Normal">int32_t</span> val = Reg[reg]<span class="Delimiter">.</span>u<span class="Delimiter">;</span>