about summary refs log tree commit diff stats
path: root/html/ex9.mu.html
diff options
context:
space:
mode:
Diffstat (limited to 'html/ex9.mu.html')
-rw-r--r--html/ex9.mu.html21
1 files changed, 10 insertions, 11 deletions
diff --git a/html/ex9.mu.html b/html/ex9.mu.html
index 35040ebe..ac7e8b68 100644
--- a/html/ex9.mu.html
+++ b/html/ex9.mu.html
@@ -14,16 +14,15 @@ pre { white-space: pre-wrap; font-family: monospace; color: #000000; background-
 body { font-size:12pt; font-family: monospace; color: #000000; background-color: #ffffd7; }
 a { color:inherit; }
 * { font-size:12pt; font-size: 1em; }
-.muRegEdi { color: #87ffd7; }
-.muComment { color: #005faf; }
-.LineNr { }
+.PreProc { color: #c000c0; }
 .Special { color: #ff6060; }
-.muRegEsi { color: #87d787; }
-.muRegEax { color: #875f00; }
+.LineNr { }
+.muRegEsi { color: #005faf; }
+.Constant { color: #008787; }
+.muRegEdi { color: #00af00; }
 .Delimiter { color: #c000c0; }
 .muFunction { color: #af5f00; text-decoration: underline; }
-.Constant { color: #008787; }
-.PreProc { color: #c000c0; }
+.muComment { color: #005faf; }
 -->
 </style>
 
@@ -81,7 +80,7 @@ if ('onhashchange' in window) {
 <span id="L20" class="LineNr">20 </span>  <span class="PreProc">var</span> text/<span class="muRegEsi">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#L974'>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="muRegEax">eax</span>: int <span class="Special">&lt;-</span> <a href='ex9.mu.html#L31'>word-count</a> text
+<span id="L23" class="LineNr">23 </span>  <span class="PreProc">var</span> <a href='ex9.mu.html#L31'>word-count</a>/eax: 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="muRegEdi">edi</span>: (addr stream byte) <span class="Special">&lt;-</span> address result-storage
@@ -89,13 +88,13 @@ if ('onhashchange' in window) {
 <span id="L28" class="LineNr">28 </span>  <a href='boot.subx.html#L1037'>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="muRegEax">eax</span>: int <span class="Delimiter">{</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>_/eax: int <span class="Delimiter">{</span>
 <span id="L32" class="LineNr">32 </span>  <span class="PreProc">var</span> result/<span class="muRegEdi">edi</span>: int <span class="Special">&lt;-</span> copy <span class="Constant">0</span>
 <span id="L33" class="LineNr">33 </span>  <span class="Delimiter">{</span>
-<span id="L34" class="LineNr">34 </span>    <span class="PreProc">var</span> done?/<span class="muRegEax">eax</span>: boolean <span class="Special">&lt;-</span> <a href='309stream.subx.html#L6'>stream-empty?</a> in
+<span id="L34" class="LineNr">34 </span>    <span class="PreProc">var</span> done?/eax: boolean <span class="Special">&lt;-</span> <a href='309stream.subx.html#L6'>stream-empty?</a> in
 <span id="L35" class="LineNr">35 </span>    compare done?, <span class="Constant">0</span>/false
 <span id="L36" class="LineNr">36 </span>    <span class="PreProc">break-if-!=</span>
-<span id="L37" class="LineNr">37 </span>    <span class="PreProc">var</span> g/<span class="muRegEax">eax</span>: grapheme <span class="Special">&lt;-</span> <a href='403unicode.mu.html#L92'>read-grapheme</a> in
+<span id="L37" class="LineNr">37 </span>    <span class="PreProc">var</span> g/eax: grapheme <span class="Special">&lt;-</span> <a href='403unicode.mu.html#L92'>read-grapheme</a> in
 <span id="L38" class="LineNr">38 </span>    <span class="Delimiter">{</span>
 <span id="L39" class="LineNr">39 </span>      compare g, <span class="Constant">0x20</span>/space
 <span id="L40" class="LineNr">40 </span>      <span class="PreProc">break-if-!=</span>