about summary refs log tree commit diff stats
path: root/html/075print-int-decimal.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/075print-int-decimal.subx.html
parentc9bda4d13ea33873dd5bce1eef0434cb11763d19 (diff)
downloadmu-7e7a8a6eaeb4c22acb94aaca87a7b15c180ca077.tar.gz
5876 - address -> addr
Diffstat (limited to 'html/075print-int-decimal.subx.html')
-rw-r--r--html/075print-int-decimal.subx.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/html/075print-int-decimal.subx.html b/html/075print-int-decimal.subx.html
index 88ace8b1..e811484b 100644
--- a/html/075print-int-decimal.subx.html
+++ b/html/075print-int-decimal.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">print-int32-decimal</span>:  <span class="subxComment"># out : (address stream byte), n : int32</span>
+<span id="L8" class="LineNr">  8 </span><span class="subxFunction">print-int32-decimal</span>:  <span class="subxComment"># out : (addr stream byte), n : int32</span>
 <span id="L9" class="LineNr">  9 </span>    <span class="subxComment"># works by generating characters from lowest to highest and pushing them</span>
 <span id="L10" class="LineNr"> 10 </span>    <span class="subxComment"># to the stack, before popping them one by one into the stream</span>
 <span id="L11" class="LineNr"> 11 </span>    <span class="subxComment">#</span>
@@ -137,9 +137,9 @@ if ('onhashchange' in window) {
 <span id="L76" class="LineNr"> 76 </span>    8b/copy                         1/mod/*+disp8   5/rm32/ebp   <span class="Normal"> . </span>         <span class="Normal"> . </span>           <span class="Normal"> . </span>          7/r32/edi   8/disp8        <span class="Normal"> . </span>                <span class="subxComment"># copy *(ebp+8) to edi</span>
 <span id="L77" class="LineNr"> 77 </span>    <span class="subxComment"># var w/edx : int = out-&gt;write</span>
 <span id="L78" class="LineNr"> 78 </span>    8b/copy                         0/mod/indirect  7/rm32/edi   <span class="Normal"> . </span>         <span class="Normal"> . </span>           <span class="Normal"> . </span>          2/r32/edx  <span class="Normal"> . </span>             <span class="Normal"> . </span>                <span class="subxComment"># copy *edi to edx</span>
-<span id="L79" class="LineNr"> 79 </span>    <span class="subxComment"># var curr/ecx : (address byte) = &amp;out-&gt;data[out-&gt;write]</span>
+<span id="L79" class="LineNr"> 79 </span>    <span class="subxComment"># var curr/ecx : (addr byte) = &amp;out-&gt;data[out-&gt;write]</span>
 <span id="L80" class="LineNr"> 80 </span>    8d/copy-address                 1/mod/*+disp8   4/rm32/sib    7/base/edi  2/index/edx  <span class="Normal"> . </span>          1/r32/ecx   0xc/disp8      <span class="Normal"> . </span>                <span class="subxComment"># copy ebx+edx+12 to ecx</span>
-<span id="L81" class="LineNr"> 81 </span>    <span class="subxComment"># var max/ebx : (address byte) = &amp;out-&gt;data[out-&gt;length]</span>
+<span id="L81" class="LineNr"> 81 </span>    <span class="subxComment"># var max/ebx : (addr byte) = &amp;out-&gt;data[out-&gt;length]</span>
 <span id="L82" class="LineNr"> 82 </span>    8b/copy                         1/mod/*+disp8   7/rm32/edi   <span class="Normal"> . </span>         <span class="Normal"> . </span>           <span class="Normal"> . </span>          3/r32/ebx   8/disp8        <span class="Normal"> . </span>                <span class="subxComment"># copy *(edi+8) to ebx</span>
 <span id="L83" class="LineNr"> 83 </span>    8d/copy-address                 1/mod/*+disp8   4/rm32/sib    7/base/edi  3/index/ebx  <span class="Normal"> . </span>          3/r32/ebx   0xc/disp8      <span class="Normal"> . </span>                <span class="subxComment"># copy edi+ebx+12 to ebx</span>
 <span id="L84" class="LineNr"> 84 </span><span class="Constant">$print-int32-decimal:write-loop</span>: