about summary refs log tree commit diff stats
path: root/html/linux/raytracing/2.mu.html
diff options
context:
space:
mode:
Diffstat (limited to 'html/linux/raytracing/2.mu.html')
-rw-r--r--html/linux/raytracing/2.mu.html23
1 files changed, 11 insertions, 12 deletions
diff --git a/html/linux/raytracing/2.mu.html b/html/linux/raytracing/2.mu.html
index ee561a64..bf8a2156 100644
--- a/html/linux/raytracing/2.mu.html
+++ b/html/linux/raytracing/2.mu.html
@@ -14,19 +14,18 @@ pre { white-space: pre-wrap; font-family: monospace; color: #000000; background-
 body { font-size:12pt; font-family: monospace; color: #000000; background-color: #ffffd7; }
 a { color:inherit; }
 * { font-size:12pt; font-size: 1em; }
-.muRegEdx { color: #878700; }
-.muRegEsi { color: #87d787; }
-.muComment { color: #005faf; }
-.CommentedCode { color: #8a8a8a; }
-.LineNr { }
-.muRegEcx { color: #af875f; }
+.PreProc { color: #c000c0; }
+.muRegEdx { color: #af5f00; }
 .Special { color: #ff6060; }
-.muRegEax { color: #875f00; }
+.LineNr { }
+.muRegEsi { color: #005faf; }
+.muRegEbx { color: #5f00ff; }
+.Constant { color: #008787; }
+.muRegEcx { color: #870000; }
 .Delimiter { color: #c000c0; }
 .muFunction { color: #af5f00; text-decoration: underline; }
-.muRegEbx { color: #8787af; }
-.Constant { color: #008787; }
-.PreProc { color: #c000c0; }
+.CommentedCode { color: #8a8a8a; }
+.muComment { color: #005faf; }
 -->
 </style>
 
@@ -81,7 +80,7 @@ if ('onhashchange' in window) {
 <span id="L17" class="LineNr">17 </span>  <span class="Delimiter">{</span>
 <span id="L18" class="LineNr">18 </span>    compare j, <span class="Constant">0</span>
 <span id="L19" class="LineNr">19 </span>    <span class="PreProc">break-if-&lt;</span>
-<span id="L20" class="LineNr">20 </span>    <span class="PreProc">var</span> i/<span class="muRegEax">eax</span>: int <span class="Special">&lt;-</span> copy <span class="Constant">0</span>
+<span id="L20" class="LineNr">20 </span>    <span class="PreProc">var</span> i/eax: int <span class="Special">&lt;-</span> copy <span class="Constant">0</span>
 <span id="L21" class="LineNr">21 </span>    <span class="Delimiter">{</span>
 <span id="L22" class="LineNr">22 </span>      compare i, <span class="Constant">0xff</span>
 <span id="L23" class="LineNr">23 </span>      <span class="PreProc">break-if-&gt;</span>
@@ -128,7 +127,7 @@ if ('onhashchange' in window) {
 <span id="L64" class="LineNr">64 </span>  <span class="PreProc">var</span> xn/<span class="Constant">xmm1</span>: float <span class="Special">&lt;-</span> convert n
 <span id="L65" class="LineNr">65 </span>  <span class="muComment"># print 255 * c-&gt;r</span>
 <span id="L66" class="LineNr">66 </span>  <span class="PreProc">var</span> result/<span class="Constant">xmm0</span>: float <span class="Special">&lt;-</span> copy xn
-<span id="L67" class="LineNr">67 </span>  <span class="PreProc">var</span> src-addr/<span class="muRegEax">eax</span>: (addr float) <span class="Special">&lt;-</span> <a href='../131table.subx.html#L26'>get</a> c, r
+<span id="L67" class="LineNr">67 </span>  <span class="PreProc">var</span> src-addr/eax: (addr float) <span class="Special">&lt;-</span> <a href='../131table.subx.html#L26'>get</a> c, r
 <span id="L68" class="LineNr">68 </span>  result <span class="Special">&lt;-</span> multiply *src-addr
 <span id="L69" class="LineNr">69 </span>  <span class="PreProc">var</span> result-int/<span class="muRegEdx">edx</span>: int <span class="Special">&lt;-</span> convert result
 <span id="L70" class="LineNr">70 </span>  <a href='../405screen.mu.html#L484'>print-int32-decimal</a> <a href='../405screen.mu.html#L9'>screen</a>, result-int
href='/akkartik/mu/blame/html/054dilated_reagent.cc.html?h=hlt&id=62a390ca0a27daa80ce4b6b17934d8d067db8631'>^
76755b28 ^
db1f56c8 ^
76755b28 ^



































d009e158 ^
76755b28 ^








db1f56c8 ^
76755b28 ^













d009e158 ^
76755b28 ^















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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166