about summary refs log tree commit diff stats
path: root/html/baremetal/400.mu.html
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2021-01-14 14:03:32 -0800
committerKartik Agaram <vc@akkartik.com>2021-01-14 14:03:32 -0800
commit20d6be52405130930fde9ca5bb5e95131ba4e659 (patch)
tree82ba4a132db206ef9adc2145d9dfd5aacd34da65 /html/baremetal/400.mu.html
parent232b4a1511a63a2c76ee233e7e172f8caa8232bb (diff)
downloadmu-20d6be52405130930fde9ca5bb5e95131ba4e659.tar.gz
7520
Diffstat (limited to 'html/baremetal/400.mu.html')
-rw-r--r--html/baremetal/400.mu.html32
1 files changed, 21 insertions, 11 deletions
diff --git a/html/baremetal/400.mu.html b/html/baremetal/400.mu.html
index 95835ad8..67aed2ec 100644
--- a/html/baremetal/400.mu.html
+++ b/html/baremetal/400.mu.html
@@ -17,6 +17,7 @@ a { color:inherit; }
 .PreProc { color: #c000c0; }
 .LineNr { }
 .Constant { color: #008787; }
+.muComment { color: #005faf; }
 -->
 </style>
 
@@ -52,17 +53,26 @@ if ('onhashchange' in window) {
 <body onload='JumpToLine();'>
 <a href='https://github.com/akkartik/mu/blob/main/baremetal/400.mu'>https://github.com/akkartik/mu/blob/main/baremetal/400.mu</a>
 <pre id='vimCodeElement'>
-<span id="L1" class="LineNr"> 1 </span><span class="PreProc">sig</span> <a href='101screen.subx.html#L3'>pixel</a> screen: (addr screen), x: int, y: int, color: int
-<span id="L2" class="LineNr"> 2 </span><span class="PreProc">sig</span> <a href='102keyboard.subx.html#L3'>read-key</a> kbd: (addr keyboard)<span class="PreProc"> -&gt; </span>_/<span class="Constant">eax</span>: byte
-<span id="L3" class="LineNr"> 3 </span><span class="PreProc">sig</span> <a href='103grapheme.subx.html#L1'>draw-grapheme</a> screen: (addr screen), g: grapheme, x: int, y: int, color: int
-<span id="L4" class="LineNr"> 4 </span><span class="PreProc">sig</span> <a href='103grapheme.subx.html#L73'>cursor-position</a> screen: (addr screen)<span class="PreProc"> -&gt; </span>_/<span class="Constant">eax</span>: int, _/<span class="Constant">ecx</span>: int
-<span id="L5" class="LineNr"> 5 </span><span class="PreProc">sig</span> <a href='103grapheme.subx.html#L86'>set-cursor-position</a> screen: (addr screen), x: int, y: int
-<span id="L6" class="LineNr"> 6 </span><span class="PreProc">sig</span> <a href='106stream.subx.html#L17'>clear-stream</a> f: (addr stream _)
-<span id="L7" class="LineNr"> 7 </span><span class="PreProc">sig</span> <a href='106stream.subx.html#L56'>rewind-stream</a> f: (addr stream _)
-<span id="L8" class="LineNr"> 8 </span><span class="PreProc">sig</span> <a href='108write.subx.html#L5'>write</a> f: (addr stream byte), s: (addr array byte)
-<span id="L9" class="LineNr"> 9 </span><span class="PreProc">sig</span> <a href='115write-byte.subx.html#L6'>append-byte</a> f: (addr stream byte), n: int
-<span id="L10" class="LineNr">10 </span><span class="PreProc">sig</span> <a href='112read-byte.subx.html#L9'>read-byte</a> s: (addr stream byte)<span class="PreProc"> -&gt; </span>_/<span class="Constant">eax</span>: byte
-<span id="L11" class="LineNr">11 </span><span class="PreProc">sig</span> <a href='309stream.subx.html#L6'>stream-empty?</a> s: (addr stream _)<span class="PreProc"> -&gt; </span>_/<span class="Constant">eax</span>: boolean
+<span id="L1" class="LineNr"> 1 </span><span class="muComment"># screen</span>
+<span id="L2" class="LineNr"> 2 </span><span class="PreProc">sig</span> <a href='101screen.subx.html#L5'>pixel</a> screen: (addr screen), x: int, y: int, color: int
+<span id="L3" class="LineNr"> 3 </span><span class="PreProc">sig</span> <a href='103grapheme.subx.html#L5'>draw-grapheme</a> screen: (addr screen), g: grapheme, x: int, y: int, color: int
+<span id="L4" class="LineNr"> 4 </span><span class="PreProc">sig</span> <a href='103grapheme.subx.html#L77'>cursor-position</a> screen: (addr screen)<span class="PreProc"> -&gt; </span>_/<span class="Constant">eax</span>: int, _/<span class="Constant">ecx</span>: int
+<span id="L5" class="LineNr"> 5 </span><span class="PreProc">sig</span> <a href='103grapheme.subx.html#L90'>set-cursor-position</a> screen: (addr screen), x: int, y: int
+<span id="L6" class="LineNr"> 6 </span>
+<span id="L7" class="LineNr"> 7 </span><span class="muComment"># keyboard</span>
+<span id="L8" class="LineNr"> 8 </span><span class="PreProc">sig</span> <a href='102keyboard.subx.html#L6'>read-key</a> kbd: (addr keyboard)<span class="PreProc"> -&gt; </span>_/<span class="Constant">eax</span>: byte
+<span id="L9" class="LineNr"> 9 </span>
+<span id="L10" class="LineNr">10 </span><span class="muComment"># tests</span>
+<span id="L11" class="LineNr">11 </span><span class="PreProc">sig</span> <a href='104test.subx.html#L5'>count-test-failure</a>
+<span id="L12" class="LineNr">12 </span><span class="PreProc">sig</span> <a href='104test.subx.html#L17'>num-test-failures</a><span class="PreProc"> -&gt; </span>_/<span class="Constant">eax</span>: int
+<span id="L13" class="LineNr">13 </span>
+<span id="L14" class="LineNr">14 </span><span class="muComment"># streams</span>
+<span id="L15" class="LineNr">15 </span><span class="PreProc">sig</span> <a href='106stream.subx.html#L17'>clear-stream</a> f: (addr stream _)
+<span id="L16" class="LineNr">16 </span><span class="PreProc">sig</span> <a href='106stream.subx.html#L56'>rewind-stream</a> f: (addr stream _)
+<span id="L17" class="LineNr">17 </span><span class="PreProc">sig</span> <a href='108write.subx.html#L6'>write</a> f: (addr stream byte), s: (addr array byte)
+<span id="L18" class="LineNr">18 </span><span class="PreProc">sig</span> <a href='115write-byte.subx.html#L7'>append-byte</a> f: (addr stream byte), n: int
+<span id="L19" class="LineNr">19 </span><span class="PreProc">sig</span> <a href='112read-byte.subx.html#L10'>read-byte</a> s: (addr stream byte)<span class="PreProc"> -&gt; </span>_/<span class="Constant">eax</span>: byte
+<span id="L20" class="LineNr">20 </span><span class="PreProc">sig</span> <a href='309stream.subx.html#L6'>stream-empty?</a> s: (addr stream _)<span class="PreProc"> -&gt; </span>_/<span class="Constant">eax</span>: boolean
 </pre>
 </body>
 </html>