about summary refs log tree commit diff stats
path: root/html/065write-buffered.subx.html
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2020-01-27 00:39:46 -0800
committerKartik Agaram <vc@akkartik.com>2020-01-27 00:39:46 -0800
commit2104d1a75b76dbffc0b15a96c98d94e7a16594e8 (patch)
tree2a839b86e76431a9bbe4bf155f7411171a26d7f8 /html/065write-buffered.subx.html
parent71eb22a5bf94f5fa0a3c95212450e3c6a1a6a990 (diff)
downloadmu-2104d1a75b76dbffc0b15a96c98d94e7a16594e8.tar.gz
5925
Diffstat (limited to 'html/065write-buffered.subx.html')
-rw-r--r--html/065write-buffered.subx.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/html/065write-buffered.subx.html b/html/065write-buffered.subx.html
index de4e5509..755994e9 100644
--- a/html/065write-buffered.subx.html
+++ b/html/065write-buffered.subx.html
@@ -66,7 +66,7 @@ if ('onhashchange' in window) {
 <span id="L5" class="LineNr">  5 </span><span class="subxS1Comment"># . op          subop               mod             rm32          base        index         scale       r32</span>
 <span id="L6" class="LineNr">  6 </span><span class="subxS1Comment"># . 1-3 bytes   3 bits              2 bits          3 bits        3 bits      3 bits        2 bits      2 bits      0/1/2/4 bytes   0/1/2/4 bytes</span>
 <span id="L7" class="LineNr">  7 </span>
-<span id="L8" class="LineNr">  8 </span><span class="subxFunction">write-buffered</span>:  <span class="subxComment"># f : (addr buffered-file), msg : (addr array byte)</span>
+<span id="L8" class="LineNr">  8 </span><span class="subxFunction">write-buffered</span>:  <span class="subxComment"># f: (addr buffered-file), msg: (addr array byte)</span>
 <span id="L9" class="LineNr">  9 </span>    <span class="subxComment"># pseudocode:</span>
 <span id="L10" class="LineNr"> 10 </span>    <span class="subxComment">#   in = msg-&gt;data</span>
 <span id="L11" class="LineNr"> 11 </span>    <span class="subxComment">#   inend = &amp;msg-&gt;data[msg-&gt;length]</span>
@@ -99,9 +99,9 @@ if ('onhashchange' in window) {
 <span id="L38" class="LineNr"> 38 </span>    57/push-edi
 <span id="L39" class="LineNr"> 39 </span>    <span class="subxComment"># eax = msg</span>
 <span id="L40" class="LineNr"> 40 </span>    8b/copy                         1/mod/*+disp8   5/rm32/ebp   <span class="Normal"> . </span>         <span class="Normal"> . </span>                        0/r32/eax   0xc/disp8      <span class="Normal"> . </span>                <span class="subxComment"># copy *(ebp+12) to eax</span>
-<span id="L41" class="LineNr"> 41 </span>    <span class="subxComment"># var in/esi : (addr byte) = msg-&gt;data</span>
+<span id="L41" class="LineNr"> 41 </span>    <span class="subxComment"># var in/esi: (addr byte) = msg-&gt;data</span>
 <span id="L42" class="LineNr"> 42 </span>    8d/copy-address                 1/mod/*+disp8   0/rm32/eax   <span class="Normal"> . </span>         <span class="Normal"> . </span>           <span class="Normal"> . </span>          6/r32/esi   4/disp8        <span class="Normal"> . </span>                <span class="subxComment"># copy eax+4 to esi</span>
-<span id="L43" class="LineNr"> 43 </span>    <span class="subxComment"># var inend/ecx : (addr byte) = &amp;msg-&gt;data[msg-&gt;length]</span>
+<span id="L43" class="LineNr"> 43 </span>    <span class="subxComment"># var inend/ecx: (addr byte) = &amp;msg-&gt;data[msg-&gt;length]</span>
 <span id="L44" class="LineNr"> 44 </span>    8b/copy                         0/mod/indirect  0/rm32/eax   <span class="Normal"> . </span>         <span class="Normal"> . </span>           <span class="Normal"> . </span>          1/r32/ecx  <span class="Normal"> . </span>             <span class="Normal"> . </span>                <span class="subxComment"># copy *eax to ecx</span>
 <span id="L45" class="LineNr"> 45 </span>    8d/copy-address                 0/mod/indirect  4/rm32/sib    6/base/esi  1/index/ecx  <span class="Normal"> . </span>          1/r32/ecx  <span class="Normal"> . </span>             <span class="Normal"> . </span>                <span class="subxComment"># copy esi+ecx to ecx</span>
 <span id="L46" class="LineNr"> 46 </span>    <span class="subxComment"># edi = f</span>