about summary refs log tree commit diff stats
path: root/html/baremetal/ex5.mu.html
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2021-02-13 18:18:05 -0800
committerKartik Agaram <vc@akkartik.com>2021-02-13 18:41:43 -0800
commit535fe9ac96dba0950efd1bfe6788801f6197971f (patch)
tree218270b512ce4175e3c7e3394d7b1a19ad84184b /html/baremetal/ex5.mu.html
parent9b5ead67eca1b6e1afeeba63e9c68b2790c26436 (diff)
downloadmu-535fe9ac96dba0950efd1bfe6788801f6197971f.tar.gz
7737
Diffstat (limited to 'html/baremetal/ex5.mu.html')
-rw-r--r--html/baremetal/ex5.mu.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/html/baremetal/ex5.mu.html b/html/baremetal/ex5.mu.html
index 1d661e78..4f5f0d2e 100644
--- a/html/baremetal/ex5.mu.html
+++ b/html/baremetal/ex5.mu.html
@@ -69,8 +69,8 @@ if ('onhashchange' in window) {
 <span id="L11" class="LineNr">11 </span><span class="muComment"># Expected output: text in green near the top-left corner of screen</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='ex5.mu.html#L13'>main</a></span> <span class="Delimiter">{</span>
-<span id="L14" class="LineNr">14 </span>  <span class="PreProc">var</span> dummy/<span class="Constant">eax</span>: int <span class="SpecialChar">&lt;-</span> <a href='501draw-text.mu.html#L73'>draw-text-rightward</a> <span class="Constant">0</span>, <span class="Constant">&quot;hello from baremetal Mu!&quot;</span>, <span class="Constant">0x10</span>, <span class="Constant">0x400</span>, <span class="Constant">0x10</span>, <span class="Constant">0xa</span>  <span class="muComment"># xmax = end of screen, plenty of space</span>
-<span id="L15" class="LineNr">15 </span>  dummy <span class="SpecialChar">&lt;-</span> <a href='501draw-text.mu.html#L73'>draw-text-rightward</a> <span class="Constant">0</span>, <span class="Constant">&quot;you shouldn't see this&quot;</span>, <span class="Constant">0x10</span>, <span class="Constant">0xa0</span>, <span class="Constant">0x30</span>, <span class="Constant">0x3</span>  <span class="muComment"># xmax = 0xa0, which is too narrow</span>
+<span id="L14" class="LineNr">14 </span>  <span class="PreProc">var</span> dummy/<span class="Constant">eax</span>: int <span class="SpecialChar">&lt;-</span> <a href='501draw-text.mu.html#L81'>draw-text-rightward</a> <span class="Constant">0</span>/screen, <span class="Constant">&quot;hello from baremetal Mu!&quot;</span>, <span class="Constant">0x10</span>/x, <span class="Constant">0x400</span>/xmax, <span class="Constant">0x10</span>/y, <span class="Constant">0xa</span>/color
+<span id="L15" class="LineNr">15 </span>  dummy <span class="SpecialChar">&lt;-</span> <a href='501draw-text.mu.html#L81'>draw-text-rightward</a> <span class="Constant">0</span>/screen, <span class="Constant">&quot;you shouldn't see this&quot;</span>, <span class="Constant">0x10</span>/x, <span class="Constant">0xa0</span>/xmax, <span class="Constant">0x30</span>/y, <span class="Constant">0x3</span>/color  <span class="muComment"># xmax is too narrow</span>
 <span id="L16" class="LineNr">16 </span><span class="Delimiter">}</span>
 </pre>
 </body>