about summary refs log tree commit diff stats
path: root/html/066print-int.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/066print-int.subx.html
parent71eb22a5bf94f5fa0a3c95212450e3c6a1a6a990 (diff)
downloadmu-2104d1a75b76dbffc0b15a96c98d94e7a16594e8.tar.gz
5925
Diffstat (limited to 'html/066print-int.subx.html')
-rw-r--r--html/066print-int.subx.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/html/066print-int.subx.html b/html/066print-int.subx.html
index 3da50115..9c077c58 100644
--- a/html/066print-int.subx.html
+++ b/html/066print-int.subx.html
@@ -67,7 +67,7 @@ if ('onhashchange' in window) {
 <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="subxComment"># convert the lowest nibble of eax to ascii and return it in the lowest byte of eax</span>
-<span id="L9" class="LineNr">  9 </span><span class="subxFunction">to-hex-char</span>:  <span class="subxComment"># in/eax : int -&gt; out/eax : int</span>
+<span id="L9" class="LineNr">  9 </span><span class="subxFunction">to-hex-char</span>:  <span class="subxComment"># in/eax: int -&gt; out/eax: int</span>
 <span id="L10" class="LineNr"> 10 </span>    <span class="subxComment"># no error checking; accepts argument in eax</span>
 <span id="L11" class="LineNr"> 11 </span>    <span class="subxComment"># if (eax &lt;= 9) return eax + '0'</span>
 <span id="L12" class="LineNr"> 12 </span>    3d/compare-eax-with  0x9/imm32/9
@@ -79,7 +79,7 @@ if ('onhashchange' in window) {
 <span id="L18" class="LineNr"> 18 </span>    05/add-to-eax  0x57/imm32/a-10
 <span id="L19" class="LineNr"> 19 </span>    c3/return
 <span id="L20" class="LineNr"> 20 </span>
-<span id="L21" class="LineNr"> 21 </span><span class="subxFunction">append-byte-hex</span>:  <span class="subxComment"># f : (addr stream byte), n : int</span>
+<span id="L21" class="LineNr"> 21 </span><span class="subxFunction">append-byte-hex</span>:  <span class="subxComment"># f: (addr stream byte), n: int</span>
 <span id="L22" class="LineNr"> 22 </span>    <span class="subxS1Comment"># . prologue</span>
 <span id="L23" class="LineNr"> 23 </span>    55/push-ebp
 <span id="L24" class="LineNr"> 24 </span>    89/copy                         3/mod/direct    5/rm32/ebp   <span class="Normal"> . </span>         <span class="Normal"> . </span>           <span class="Normal"> . </span>          4/r32/esp  <span class="Normal"> . </span>             <span class="Normal"> . </span>                <span class="subxComment"># copy esp to ebp</span>
@@ -151,7 +151,7 @@ if ('onhashchange' in window) {
 <span id="L90" class="LineNr"> 90 </span>    c3/return
 <span id="L91" class="LineNr"> 91 </span>
 <span id="L92" class="LineNr"> 92 </span><span class="subxComment"># print the hex representation for the lowest byte of a number</span>
-<span id="L93" class="LineNr"> 93 </span><span class="subxFunction">print-byte-buffered</span>:  <span class="subxComment"># f : (addr buffered-file), n : int</span>
+<span id="L93" class="LineNr"> 93 </span><span class="subxFunction">print-byte-buffered</span>:  <span class="subxComment"># f: (addr buffered-file), n: int</span>
 <span id="L94" class="LineNr"> 94 </span>    <span class="subxS1Comment"># . prologue</span>
 <span id="L95" class="LineNr"> 95 </span>    55/push-ebp
 <span id="L96" class="LineNr"> 96 </span>    89/copy                         3/mod/direct    5/rm32/ebp   <span class="Normal"> . </span>         <span class="Normal"> . </span>           <span class="Normal"> . </span>          4/r32/esp  <span class="Normal"> . </span>             <span class="Normal"> . </span>                <span class="subxComment"># copy esp to ebp</span>
@@ -236,7 +236,7 @@ if ('onhashchange' in window) {
 <span id="L175" class="LineNr">175 </span>    <span class="subxS1Comment"># . end</span>
 <span id="L176" class="LineNr">176 </span>    c3/return
 <span id="L177" class="LineNr">177 </span>
-<span id="L178" class="LineNr">178 </span><span class="subxFunction">print-int32</span>:  <span class="subxComment"># f : (addr stream byte), n : int</span>
+<span id="L178" class="LineNr">178 </span><span class="subxFunction">print-int32</span>:  <span class="subxComment"># f: (addr stream byte), n: int</span>
 <span id="L179" class="LineNr">179 </span>    <span class="subxComment"># pseudocode:</span>
 <span id="L180" class="LineNr">180 </span>    <span class="subxComment">#  write(f, &quot;0x&quot;)</span>
 <span id="L181" class="LineNr">181 </span>    <span class="subxComment">#  ecx = 28</span>
@@ -324,7 +324,7 @@ if ('onhashchange' in window) {
 <span id="L263" class="LineNr">263 </span>    <span class="subxS1Comment"># . end</span>
 <span id="L264" class="LineNr">264 </span>    c3/return
 <span id="L265" class="LineNr">265 </span>
-<span id="L266" class="LineNr">266 </span><span class="subxFunction">print-int32-buffered</span>:  <span class="subxComment"># f : (addr buffered-file), n : int</span>
+<span id="L266" class="LineNr">266 </span><span class="subxFunction">print-int32-buffered</span>:  <span class="subxComment"># f: (addr buffered-file), n: int</span>
 <span id="L267" class="LineNr">267 </span>    <span class="subxComment"># pseudocode:</span>
 <span id="L268" class="LineNr">268 </span>    <span class="subxComment">#  write-buffered(f, &quot;0x&quot;)</span>
 <span id="L269" class="LineNr">269 </span>    <span class="subxComment">#  ecx = 28</span>