about summary refs log tree commit diff stats
path: root/html/apps/ex14.mu.html
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2021-09-01 13:22:16 -0700
committerKartik Agaram <vc@akkartik.com>2021-09-01 13:22:16 -0700
commit207c6ef945a56e3928b5369a691b2107dfdf847b (patch)
tree7eb01472862e49e7c1359ec59d2b8a87d68d1e75 /html/apps/ex14.mu.html
parentd2f96cb0b6c5f05f36122088d7daa546c283fd9a (diff)
downloadmu-207c6ef945a56e3928b5369a691b2107dfdf847b.tar.gz
.
Diffstat (limited to 'html/apps/ex14.mu.html')
-rw-r--r--html/apps/ex14.mu.html23
1 files changed, 9 insertions, 14 deletions
diff --git a/html/apps/ex14.mu.html b/html/apps/ex14.mu.html
index 5af8970f..9b527ec1 100644
--- a/html/apps/ex14.mu.html
+++ b/html/apps/ex14.mu.html
@@ -59,8 +59,8 @@ if ('onhashchange' in window) {
 <pre id='vimCodeElement'>
 <span id="L1" class="LineNr"> 1 </span><span class="muComment"># Unicode demo</span>
 <span id="L2" class="LineNr"> 2 </span><span class="muComment">#</span>
-<span id="L3" class="LineNr"> 3 </span><span class="muComment"># Mu can't read Unicode from keyboard yet, so we'll read from disk and print</span>
-<span id="L4" class="LineNr"> 4 </span><span class="muComment"># to screen.</span>
+<span id="L3" class="LineNr"> 3 </span><span class="muComment"># Mu can't read Unicode from keyboard yet, so we'll read utf-8 from disk and</span>
+<span id="L4" class="LineNr"> 4 </span><span class="muComment"># print to screen.</span>
 <span id="L5" class="LineNr"> 5 </span><span class="muComment">#</span>
 <span id="L6" class="LineNr"> 6 </span><span class="muComment"># Steps for trying it out:</span>
 <span id="L7" class="LineNr"> 7 </span><span class="muComment">#   1. Translate this example into a disk image code.img.</span>
@@ -72,18 +72,13 @@ if ('onhashchange' in window) {
 <span id="L13" class="LineNr">13 </span><span class="muComment">#       qemu-system-i386 -hda code.img -hdb data.img</span>
 <span id="L14" class="LineNr">14 </span><span class="muComment">#</span>
 <span id="L15" class="LineNr">15 </span><span class="muComment"># Expected output: 'நட' in green near the top-left corner of screen</span>
-<span id="L16" class="LineNr">16 </span><span class="muComment">#</span>
-<span id="L17" class="LineNr">17 </span><span class="muComment"># Limitations:</span>
-<span id="L18" class="LineNr">18 </span><span class="muComment">#   - Utf-8 is the one true encoding.</span>
-<span id="L19" class="LineNr">19 </span><span class="muComment">#   - No keyboard support yet.</span>
-<span id="L20" class="LineNr">20 </span><span class="muComment">#   - Just single-code-point graphemes so far. No combiner characters, etc.</span>
-<span id="L21" class="LineNr">21 </span>
-<span id="L22" class="LineNr">22 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='ex14.mu.html#L22'>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="L23" class="LineNr">23 </span>  <span class="PreProc">var</span> text-storage: (stream byte <span class="Constant">0x200</span>)
-<span id="L24" class="LineNr">24 </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="L25" class="LineNr">25 </span>  <a href='../510disk.mu.html#L1'>load-sectors</a> data-disk, <span class="Constant">0</span>/lba, <span class="Constant">1</span>/num-sectors, text
-<span id="L26" class="LineNr">26 </span>  <span class="PreProc">var</span> dummy/eax: int <span class="Special">&lt;-</span> <a href='../501draw-text.mu.html#L117'>draw-stream-rightward</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, text, <span class="Constant">0</span>/x <span class="Constant">0x80</span>/xmax <span class="Constant">0</span>/y, <span class="Constant">0xa</span>/fg, <span class="Constant">0</span>/bg
-<span id="L27" class="LineNr">27 </span><span class="Delimiter">}</span>
+<span id="L16" class="LineNr">16 </span>
+<span id="L17" class="LineNr">17 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='ex14.mu.html#L17'>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="L18" class="LineNr">18 </span>  <span class="PreProc">var</span> text-storage: (stream byte <span class="Constant">0x200</span>)
+<span id="L19" class="LineNr">19 </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="L20" class="LineNr">20 </span>  <a href='../510disk.mu.html#L1'>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>  <span class="PreProc">var</span> dummy/eax: int <span class="Special">&lt;-</span> <a href='../501draw-text.mu.html#L117'>draw-stream-rightward</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, text, <span class="Constant">0</span>/x <span class="Constant">0x80</span>/xmax <span class="Constant">0</span>/y, <span class="Constant">0xa</span>/fg, <span class="Constant">0</span>/bg
+<span id="L22" class="LineNr">22 </span><span class="Delimiter">}</span>
 </pre>
 </body>
 </html>