about summary refs log tree commit diff stats
path: root/html/baremetal/ex3.mu.html
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2021-01-13 00:08:31 -0800
committerKartik Agaram <vc@akkartik.com>2021-01-13 00:08:31 -0800
commitf6fd7e1be0780b5b6dee042bef1c4f0264069787 (patch)
tree210c5d27c3fdf0793118d5cd7fe83c07737f7cfa /html/baremetal/ex3.mu.html
parent422ebaf88c5a04900beb0a68162213ebc94e37c2 (diff)
downloadmu-f6fd7e1be0780b5b6dee042bef1c4f0264069787.tar.gz
7509
Diffstat (limited to 'html/baremetal/ex3.mu.html')
-rw-r--r--html/baremetal/ex3.mu.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/html/baremetal/ex3.mu.html b/html/baremetal/ex3.mu.html
index c9d6fb1f..54cdea24 100644
--- a/html/baremetal/ex3.mu.html
+++ b/html/baremetal/ex3.mu.html
@@ -14,13 +14,13 @@ pre { white-space: pre-wrap; font-family: monospace; color: #000000; background-
 body { font-size:12pt; font-family: monospace; color: #000000; background-color: #c6c6c6; }
 a { color:inherit; }
 * { font-size:12pt; font-size: 1em; }
-.muComment { color: #005faf; }
+.PreProc { color: #c000c0; }
 .LineNr { }
+.Constant { color: #008787; }
 .SpecialChar { color: #d70000; }
 .Delimiter { color: #c000c0; }
 .muFunction { color: #af5f00; text-decoration: underline; }
-.Constant { color: #008787; }
-.PreProc { color: #c000c0; }
+.muComment { color: #005faf; }
 -->
 </style>
 
@@ -69,7 +69,7 @@ if ('onhashchange' in window) {
 <span id="L11" class="LineNr">11 </span><span class="muComment"># Expected output: a new green pixel starting from the top left corner of the</span>
 <span id="L12" class="LineNr">12 </span><span class="muComment"># screen every time you press a key (letter or digit)</span>
 <span id="L13" class="LineNr">13 </span>
-<span id="L14" class="LineNr">14 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='ex3.mu.html#L14'>main</a></span> <span class="Delimiter">{</span>
+<span id="L14" class="LineNr">14 </span><span class="PreProc">fn</span> <span class="muFunction">main</span> <span class="Delimiter">{</span>
 <span id="L15" class="LineNr">15 </span>  <span class="PreProc">var</span> x/<span class="Constant">ecx</span>: int <span class="SpecialChar">&lt;-</span> copy <span class="Constant">0</span>
 <span id="L16" class="LineNr">16 </span>  <span class="PreProc">var</span> y/<span class="Constant">edx</span>: int <span class="SpecialChar">&lt;-</span> copy <span class="Constant">0</span>
 <span id="L17" class="LineNr">17 </span>  <span class="Delimiter">{</span>