about summary refs log tree commit diff stats
path: root/html/ex7.mu.html
diff options
context:
space:
mode:
Diffstat (limited to 'html/ex7.mu.html')
-rw-r--r--html/ex7.mu.html15
1 files changed, 7 insertions, 8 deletions
diff --git a/html/ex7.mu.html b/html/ex7.mu.html
index dab97ffb..08050bc9 100644
--- a/html/ex7.mu.html
+++ b/html/ex7.mu.html
@@ -14,14 +14,13 @@ 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; }
-.muComment { color: #005faf; }
-.LineNr { }
+.PreProc { color: #c000c0; }
 .Special { color: #ff6060; }
-.muRegEax { color: #875f00; }
+.LineNr { }
+.Constant { color: #008787; }
 .Delimiter { color: #c000c0; }
 .muFunction { color: #af5f00; text-decoration: underline; }
-.Constant { color: #008787; }
-.PreProc { color: #c000c0; }
+.muComment { color: #005faf; }
 -->
 </style>
 
@@ -70,11 +69,11 @@ if ('onhashchange' in window) {
 <span id="L11" class="LineNr">11 </span><span class="muComment"># k, l.</span>
 <span id="L12" class="LineNr">12 </span>
 <span id="L13" class="LineNr">13 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='ex7.mu.html#L13'>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="L14" class="LineNr">14 </span>  <span class="PreProc">var</span> space/<span class="muRegEax">eax</span>: grapheme <span class="Special">&lt;-</span> copy <span class="Constant">0x20</span>
+<span id="L14" class="LineNr">14 </span>  <span class="PreProc">var</span> space/eax: grapheme <span class="Special">&lt;-</span> copy <span class="Constant">0x20</span>
 <span id="L15" class="LineNr">15 </span>  <a href='500fake-screen.mu.html#L190'>set-cursor-position</a> <a href='500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">0</span>, <span class="Constant">0</span>
 <span id="L16" class="LineNr">16 </span>  <span class="Delimiter">{</span>
 <span id="L17" class="LineNr">17 </span>    <a href='500fake-screen.mu.html#L237'>draw-cursor</a> <a href='500fake-screen.mu.html#L14'>screen</a>, space
-<span id="L18" class="LineNr">18 </span>    <span class="PreProc">var</span> key/<span class="muRegEax">eax</span>: byte <span class="Special">&lt;-</span> <a href='102keyboard.subx.html#L21'>read-key</a> keyboard
+<span id="L18" class="LineNr">18 </span>    <span class="PreProc">var</span> key/eax: byte <span class="Special">&lt;-</span> <a href='102keyboard.subx.html#L21'>read-key</a> keyboard
 <span id="L19" class="LineNr">19 </span>    <span class="Delimiter">{</span>
 <span id="L20" class="LineNr">20 </span>      compare key, <span class="Constant">0x68</span>/h
 <span id="L21" class="LineNr">21 </span>      <span class="PreProc">break-if-!=</span>
@@ -96,7 +95,7 @@ if ('onhashchange' in window) {
 <span id="L37" class="LineNr">37 </span>    <span class="Delimiter">{</span>
 <span id="L38" class="LineNr">38 </span>      compare key, <span class="Constant">0x6c</span>/l
 <span id="L39" class="LineNr">39 </span>      <span class="PreProc">break-if-!=</span>
-<span id="L40" class="LineNr">40 </span>      <span class="PreProc">var</span> g/<span class="muRegEax">eax</span>: code-point <span class="Special">&lt;-</span> copy <span class="Constant">0x2d</span>/dash
+<span id="L40" class="LineNr">40 </span>      <span class="PreProc">var</span> g/eax: code-point <span class="Special">&lt;-</span> copy <span class="Constant">0x2d</span>/dash
 <span id="L41" class="LineNr">41 </span>      <a href='501draw-text.mu.html#L92'>draw-code-point-at-cursor</a> <a href='500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">0x2d</span>/dash, <span class="Constant">0x31</span>/fg, <span class="Constant">0</span>/bg
 <span id="L42" class="LineNr">42 </span>      <a href='501draw-text.mu.html#L16'>move-cursor-right</a> <span class="Constant">0</span>
 <span id="L43" class="LineNr">43 </span>    <span class="Delimiter">}</span>