about summary refs log tree commit diff stats
path: root/html/ex9.mu.html
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2021-05-18 13:01:59 -0700
committerKartik Agaram <vc@akkartik.com>2021-05-18 13:04:33 -0700
commit5396e24cba8390ca2d70d99c7e8772eee4ec3a11 (patch)
treeb266edbb6c21db7904370d082a7966783fb9e9d4 /html/ex9.mu.html
parentb4c0b12542c1f1a1e141ed0c8db2f6165af06e0f (diff)
downloadmu-5396e24cba8390ca2d70d99c7e8772eee4ec3a11.tar.gz
.
Diffstat (limited to 'html/ex9.mu.html')
-rw-r--r--html/ex9.mu.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/html/ex9.mu.html b/html/ex9.mu.html
index 429d788d..c14e8878 100644
--- a/html/ex9.mu.html
+++ b/html/ex9.mu.html
@@ -76,14 +76,14 @@ if ('onhashchange' in window) {
 <span id="L18" class="LineNr">18 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='ex9.mu.html#L18'>main</a></span> <a href='500fake-screen.mu.html#L14'>screen</a>: (addr <a href='500fake-screen.mu.html#L14'>screen</a>), keyboard: (addr keyboard), data-disk: (addr disk) <span class="Delimiter">{</span>
 <span id="L19" class="LineNr">19 </span>  <span class="PreProc">var</span> text-storage: (stream byte <span class="Constant">0x200</span>)
 <span id="L20" class="LineNr">20 </span>  <span class="PreProc">var</span> text/<span class="Constant">esi</span>: (addr stream byte) <span class="Special">&lt;-</span> address text-storage
-<span id="L21" class="LineNr">21 </span>  <a href='boot.subx.html#L925'>load-sectors</a> data-disk, <span class="Constant">0</span>/lba, <span class="Constant">1</span>/num-sectors, text
+<span id="L21" class="LineNr">21 </span>  <a href='boot.subx.html#L946'>load-sectors</a> data-disk, <span class="Constant">0</span>/lba, <span class="Constant">1</span>/num-sectors, text
 <span id="L22" class="LineNr">22 </span>
 <span id="L23" class="LineNr">23 </span>  <span class="PreProc">var</span> <a href='ex9.mu.html#L31'>word-count</a>/<span class="Constant">eax</span>: int <span class="Special">&lt;-</span> <a href='ex9.mu.html#L31'>word-count</a> text
 <span id="L24" class="LineNr">24 </span>
 <span id="L25" class="LineNr">25 </span>  <span class="PreProc">var</span> result-storage: (stream byte <span class="Constant">0x10</span>)
 <span id="L26" class="LineNr">26 </span>  <span class="PreProc">var</span> result/<span class="Constant">edi</span>: (addr stream byte) <span class="Special">&lt;-</span> address result-storage
 <span id="L27" class="LineNr">27 </span>  <a href='126write-int-decimal.subx.html#L8'>write-int32-decimal</a> result, <a href='ex9.mu.html#L31'>word-count</a>
-<span id="L28" class="LineNr">28 </span>  <a href='boot.subx.html#L987'>store-sectors</a> data-disk, <span class="Constant">0</span>/lba, <span class="Constant">1</span>/num-sectors, result
+<span id="L28" class="LineNr">28 </span>  <a href='boot.subx.html#L1009'>store-sectors</a> data-disk, <span class="Constant">0</span>/lba, <span class="Constant">1</span>/num-sectors, result
 <span id="L29" class="LineNr">29 </span><span class="Delimiter">}</span>
 <span id="L30" class="LineNr">30 </span>
 <span id="L31" class="LineNr">31 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='ex9.mu.html#L31'>word-count</a></span> in: (addr stream byte)<span class="PreProc"> -&gt; </span>_/<span class="Constant">eax</span>: int <span class="Delimiter">{</span>