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-03 01:36:34 -0800
committerKartik Agaram <vc@akkartik.com>2020-01-03 01:36:34 -0800
commit7e7a8a6eaeb4c22acb94aaca87a7b15c180ca077 (patch)
tree405503a31b48f5c5e13f103efc5762e57b290625 /html/065write-buffered.subx.html
parentc9bda4d13ea33873dd5bce1eef0434cb11763d19 (diff)
downloadmu-7e7a8a6eaeb4c22acb94aaca87a7b15c180ca077.tar.gz
5876 - address -> addr
Diffstat (limited to 'html/065write-buffered.subx.html')
-rw-r--r--html/065write-buffered.subx.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/html/065write-buffered.subx.html b/html/065write-buffered.subx.html
index ab9c8670..10545dec 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 : (address buffered-file), msg : (address 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 : (address 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 : (address 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>
@@ -268,7 +268,7 @@ if ('onhashchange' in window) {
 <span id="L207" class="LineNr">207 </span>
 <span id="L208" class="LineNr">208 </span><span class="subxComment"># The buffered file for standard error.</span>
 <span id="L209" class="LineNr">209 </span><span class="SpecialChar">Stderr</span>:  <span class="subxComment"># (ref buffered-file)</span>
-<span id="L210" class="LineNr">210 </span>    <span class="subxComment"># file descriptor or (address stream byte)</span>
+<span id="L210" class="LineNr">210 </span>    <span class="subxComment"># file descriptor or (addr stream byte)</span>
 <span id="L211" class="LineNr">211 </span>    2/imm32  <span class="subxComment"># standard error</span>
 <span id="L212" class="LineNr">212 </span><span class="Constant">$Stderr-&gt;buffer</span>:
 <span id="L213" class="LineNr">213 </span>    <span class="subxComment"># inlined fields for a stream</span>