about summary refs log tree commit diff stats
path: root/html/life.mu.html
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2021-04-13 21:11:26 -0700
committerKartik Agaram <vc@akkartik.com>2021-04-13 21:11:26 -0700
commit5a3f9a31850d6da72dff7211c9760cd4a8e1090b (patch)
treeda45bfbfa58a4573b6c1898006dfaf146352eb40 /html/life.mu.html
parentfea45ccbea6bee563b41da199fb3c456c6069cb5 (diff)
downloadmu-5a3f9a31850d6da72dff7211c9760cd4a8e1090b.tar.gz
.
Diffstat (limited to 'html/life.mu.html')
-rw-r--r--html/life.mu.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/html/life.mu.html b/html/life.mu.html
index 791d6a3e..8507f504 100644
--- a/html/life.mu.html
+++ b/html/life.mu.html
@@ -270,7 +270,7 @@ if ('onhashchange' in window) {
 <span id="L211" class="LineNr">211 </span>  <span class="Delimiter">}</span>
 <span id="L212" class="LineNr">212 </span><span class="Delimiter">}</span>
 <span id="L213" class="LineNr">213 </span>
-<span id="L214" class="LineNr">214 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='life.mu.html#L214'>main</a></span> <span class="Delimiter">{</span>
+<span id="L214" class="LineNr">214 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='life.mu.html#L214'>main</a></span> <a href='500text-screen.mu.html#L9'>screen</a>: (addr <a href='500text-screen.mu.html#L9'>screen</a>), keyboard: (addr keyboard), data-disk: (addr disk) <span class="Delimiter">{</span>
 <span id="L215" class="LineNr">215 </span><span class="CommentedCode">#?   # allocate on the stack</span>
 <span id="L216" class="LineNr">216 </span><span class="CommentedCode">#?   var grid1-storage: (array boolean 0xc000)  # width * height</span>
 <span id="L217" class="LineNr">217 </span><span class="CommentedCode">#?   var grid1/esi: (addr array boolean) &lt;- address grid1-storage</span>
@@ -296,7 +296,7 @@ if ('onhashchange' in window) {
 <span id="L237" class="LineNr">237 </span>  <span class="muComment"># render grid1</span>
 <span id="L238" class="LineNr">238 </span>  <a href='life.mu.html#L186'>render</a> grid1
 <span id="L239" class="LineNr">239 </span>  <span class="Delimiter">{</span>
-<span id="L240" class="LineNr">240 </span>    <span class="PreProc">var</span> key/<span class="Constant">eax</span>: byte <span class="Special">&lt;-</span> <a href='102keyboard.subx.html#L9'>read-key</a> <span class="Constant">0</span>/keyboard
+<span id="L240" class="LineNr">240 </span>    <span class="PreProc">var</span> key/<span class="Constant">eax</span>: byte <span class="Special">&lt;-</span> <a href='102keyboard.subx.html#L21'>read-key</a> keyboard
 <span id="L241" class="LineNr">241 </span>    compare key, <span class="Constant">0</span>
 <span id="L242" class="LineNr">242 </span><span class="CommentedCode">#?     loop-if-=  # press key to step</span>
 <span id="L243" class="LineNr">243 </span>    <span class="PreProc">break-if-!=</span>  <span class="muComment"># press key to quit  # comment this out to run under bochs; I'm not sure why there's a newline in the keyboard buffer</span>