about summary refs log tree commit diff stats
path: root/html/ex3.mu.html
diff options
context:
space:
mode:
Diffstat (limited to 'html/ex3.mu.html')
-rw-r--r--html/ex3.mu.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/html/ex3.mu.html b/html/ex3.mu.html
index 0c2dbe62..77e4d705 100644
--- a/html/ex3.mu.html
+++ b/html/ex3.mu.html
@@ -69,11 +69,11 @@ 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"><a href='ex3.mu.html#L14'>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="L15" class="LineNr">15 </span>  <span class="PreProc">var</span> x/<span class="Constant">ecx</span>: int <span class="Special">&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="Special">&lt;-</span> copy <span class="Constant">0</span>
 <span id="L17" class="LineNr">17 </span>  <span class="Delimiter">{</span>
-<span id="L18" class="LineNr">18 </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="L18" class="LineNr">18 </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="L19" class="LineNr">19 </span>    compare key, <span class="Constant">0</span>
 <span id="L20" class="LineNr">20 </span>    <span class="PreProc">loop-if-=</span>  <span class="muComment"># busy wait</span>
 <span id="L21" class="LineNr">21 </span>    <a href='101screen.subx.html#L8'>pixel-on-real-screen</a> x, y, <span class="Constant">0x31</span>/green
oothj5@gmail.com> 2016-05-01 19:39:39 +0100 Add /blocked command' href='/danisanti/profani-tty/commit/tests/functionaltests/test_ping.c?id=b8c94376aad2d5edf4390e47b8dc89db8ab1a517'>b8c94376 ^
7f98e013 ^
f17afcf5 ^

a522d022 ^
f17afcf5 ^




a48b9fce ^
f17afcf5 ^

7f98e013 ^

f17afcf5 ^



7f98e013 ^
f17afcf5 ^

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57