about summary refs log tree commit diff stats
path: root/html/502test.mu.html
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2021-06-15 21:50:13 -0700
committerKartik Agaram <vc@akkartik.com>2021-06-15 21:50:13 -0700
commitdd60caa3f51c5117c0193f8f3272e1c7f5230eb7 (patch)
tree4ea39cbf1550767a5004c450b807cf5c968ac5fa /html/502test.mu.html
parent678c9366331641111c05b4508988405c4400f026 (diff)
downloadmu-dd60caa3f51c5117c0193f8f3272e1c7f5230eb7.tar.gz
.
Diffstat (limited to 'html/502test.mu.html')
-rw-r--r--html/502test.mu.html7
1 files changed, 4 insertions, 3 deletions
diff --git a/html/502test.mu.html b/html/502test.mu.html
index edb32774..44bb5649 100644
--- a/html/502test.mu.html
+++ b/html/502test.mu.html
@@ -18,6 +18,7 @@ a { color:inherit; }
 .Special { color: #ff6060; }
 .LineNr { }
 .Constant { color: #008787; }
+.muRegEax { color: #875f00; }
 .Delimiter { color: #c000c0; }
 .muFunction { color: #af5f00; text-decoration: underline; }
 .muTest { color: #5f8700; }
@@ -59,7 +60,7 @@ if ('onhashchange' in window) {
 <pre id='vimCodeElement'>
 <span id="L1" class="LineNr"> 1 </span><span class="muComment"># print msg to screen if a != b, otherwise print &quot;.&quot;</span>
 <span id="L2" class="LineNr"> 2 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='502test.mu.html#L2'>check-ints-equal</a></span> _a: int, b: int, msg: (addr array byte) <span class="Delimiter">{</span>
-<span id="L3" class="LineNr"> 3 </span>  <span class="PreProc">var</span> a/<span class="Constant">eax</span>: int <span class="Special">&lt;-</span> copy _a
+<span id="L3" class="LineNr"> 3 </span>  <span class="PreProc">var</span> a/<span class="muRegEax">eax</span>: int <span class="Special">&lt;-</span> copy _a
 <span id="L4" class="LineNr"> 4 </span>  compare a, b
 <span id="L5" class="LineNr"> 5 </span>  <span class="Delimiter">{</span>
 <span id="L6" class="LineNr"> 6 </span>    <span class="PreProc">break-if-!=</span>
@@ -76,7 +77,7 @@ if ('onhashchange' in window) {
 <span id="L17" class="LineNr">17 </span><span class="Delimiter">}</span>
 <span id="L18" class="LineNr">18 </span>
 <span id="L19" class="LineNr">19 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='502test.mu.html#L19'>check</a></span> _a: boolean, msg: (addr array byte) <span class="Delimiter">{</span>
-<span id="L20" class="LineNr">20 </span>  <span class="PreProc">var</span> a/<span class="Constant">eax</span>: int <span class="Special">&lt;-</span> copy _a
+<span id="L20" class="LineNr">20 </span>  <span class="PreProc">var</span> a/<span class="muRegEax">eax</span>: int <span class="Special">&lt;-</span> copy _a
 <span id="L21" class="LineNr">21 </span>  compare a, <span class="Constant">0</span>/false
 <span id="L22" class="LineNr">22 </span>  <span class="Delimiter">{</span>
 <span id="L23" class="LineNr">23 </span>    <span class="PreProc">break-if-=</span>
@@ -89,7 +90,7 @@ if ('onhashchange' in window) {
 <span id="L30" class="LineNr">30 </span><span class="Delimiter">}</span>
 <span id="L31" class="LineNr">31 </span>
 <span id="L32" class="LineNr">32 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='502test.mu.html#L32'>check-not</a></span> _a: boolean, msg: (addr array byte) <span class="Delimiter">{</span>
-<span id="L33" class="LineNr">33 </span>  <span class="PreProc">var</span> a/<span class="Constant">eax</span>: int <span class="Special">&lt;-</span> copy _a
+<span id="L33" class="LineNr">33 </span>  <span class="PreProc">var</span> a/<span class="muRegEax">eax</span>: int <span class="Special">&lt;-</span> copy _a
 <span id="L34" class="LineNr">34 </span>  compare a, <span class="Constant">0</span>/false
 <span id="L35" class="LineNr">35 </span>  <span class="Delimiter">{</span>
 <span id="L36" class="LineNr">36 </span>    <span class="PreProc">break-if-!=</span>