diff options
author | Kartik Agaram <vc@akkartik.com> | 2021-06-26 20:55:36 -0700 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2021-06-26 20:55:36 -0700 |
commit | 372367f59a897162912d0646158bdea1e07d6e66 (patch) | |
tree | 16cd7f70de3505f35fbc86ed2b7d3810cab0d148 /html/506math.mu.html | |
parent | dc5a0acf3feea227d03a98cedf427d2aef462320 (diff) | |
download | mu-372367f59a897162912d0646158bdea1e07d6e66.tar.gz |
html: better highlighting for int registers
Diffstat (limited to 'html/506math.mu.html')
-rw-r--r-- | html/506math.mu.html | 23 |
1 files changed, 11 insertions, 12 deletions
diff --git a/html/506math.mu.html b/html/506math.mu.html index 25732479..76390e16 100644 --- a/html/506math.mu.html +++ b/html/506math.mu.html @@ -14,14 +14,13 @@ 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; } -.Special { color: #ff6060; } +.PreProc { color: #c000c0; } .LineNr { } -.muRegEdi { color: #87ffd7; } -.muRegEax { color: #875f00; } +.Constant { color: #008787; } +.muRegEdi { color: #00af00; } .Delimiter { color: #c000c0; } .muFunction { color: #af5f00; text-decoration: underline; } -.Constant { color: #008787; } -.PreProc { color: #c000c0; } +.Special { color: #ff6060; } --> </style> @@ -57,7 +56,7 @@ if ('onhashchange' in window) { <body onload='JumpToLine();'> <a href='https://github.com/akkartik/mu/blob/main/506math.mu'>https://github.com/akkartik/mu/blob/main/506math.mu</a> <pre id='vimCodeElement'> -<span id="L1" class="LineNr"> 1 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='506math.mu.html#L1'>abs</a></span> n: int<span class="PreProc"> -> </span>_/<span class="muRegEax">eax</span>: int <span class="Delimiter">{</span> +<span id="L1" class="LineNr"> 1 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='506math.mu.html#L1'>abs</a></span> n: int<span class="PreProc"> -> </span>_/eax: int <span class="Delimiter">{</span> <span id="L2" class="LineNr"> 2 </span> compare n, <span class="Constant">0</span> <span id="L3" class="LineNr"> 3 </span> <span class="Delimiter">{</span> <span id="L4" class="LineNr"> 4 </span> <span class="PreProc">break-if->=</span> @@ -66,7 +65,7 @@ if ('onhashchange' in window) { <span id="L7" class="LineNr"> 7 </span> <span class="PreProc">return</span> n <span id="L8" class="LineNr"> 8 </span><span class="Delimiter">}</span> <span id="L9" class="LineNr"> 9 </span> -<span id="L10" class="LineNr">10 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='506math.mu.html#L10'>sgn</a></span> n: int<span class="PreProc"> -> </span>_/<span class="muRegEax">eax</span>: int <span class="Delimiter">{</span> +<span id="L10" class="LineNr">10 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='506math.mu.html#L10'>sgn</a></span> n: int<span class="PreProc"> -> </span>_/eax: int <span class="Delimiter">{</span> <span id="L11" class="LineNr">11 </span> compare n, <span class="Constant">0</span> <span id="L12" class="LineNr">12 </span> <span class="Delimiter">{</span> <span id="L13" class="LineNr">13 </span> <span class="PreProc">break-if-<=</span> @@ -79,8 +78,8 @@ if ('onhashchange' in window) { <span id="L20" class="LineNr">20 </span> <span class="PreProc">return</span> <span class="Constant">0</span> <span id="L21" class="LineNr">21 </span><span class="Delimiter">}</span> <span id="L22" class="LineNr">22 </span> -<span id="L23" class="LineNr">23 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='506math.mu.html#L23'>shift-left-by</a></span> n: int, bits: int<span class="PreProc"> -> </span>_/<span class="muRegEax">eax</span>: int <span class="Delimiter">{</span> -<span id="L24" class="LineNr">24 </span> <span class="PreProc">var</span> i/<span class="muRegEax">eax</span>: int <span class="Special"><-</span> copy bits +<span id="L23" class="LineNr">23 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='506math.mu.html#L23'>shift-left-by</a></span> n: int, bits: int<span class="PreProc"> -> </span>_/eax: int <span class="Delimiter">{</span> +<span id="L24" class="LineNr">24 </span> <span class="PreProc">var</span> i/eax: int <span class="Special"><-</span> copy bits <span id="L25" class="LineNr">25 </span> <span class="Delimiter">{</span> <span id="L26" class="LineNr">26 </span> compare i, <span class="Constant">0</span> <span id="L27" class="LineNr">27 </span> <span class="PreProc">break-if-<=</span> @@ -91,8 +90,8 @@ if ('onhashchange' in window) { <span id="L32" class="LineNr">32 </span> <span class="PreProc">return</span> n <span id="L33" class="LineNr">33 </span><span class="Delimiter">}</span> <span id="L34" class="LineNr">34 </span> -<span id="L35" class="LineNr">35 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='506math.mu.html#L35'>shift-right-by</a></span> n: int, bits: int<span class="PreProc"> -> </span>_/<span class="muRegEax">eax</span>: int <span class="Delimiter">{</span> -<span id="L36" class="LineNr">36 </span> <span class="PreProc">var</span> i/<span class="muRegEax">eax</span>: int <span class="Special"><-</span> copy bits +<span id="L35" class="LineNr">35 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='506math.mu.html#L35'>shift-right-by</a></span> n: int, bits: int<span class="PreProc"> -> </span>_/eax: int <span class="Delimiter">{</span> +<span id="L36" class="LineNr">36 </span> <span class="PreProc">var</span> i/eax: int <span class="Special"><-</span> copy bits <span id="L37" class="LineNr">37 </span> <span class="Delimiter">{</span> <span id="L38" class="LineNr">38 </span> compare i, <span class="Constant">0</span> <span id="L39" class="LineNr">39 </span> <span class="PreProc">break-if-<=</span> @@ -105,7 +104,7 @@ if ('onhashchange' in window) { <span id="L46" class="LineNr">46 </span> <span id="L47" class="LineNr">47 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='506math.mu.html#L47'>clear-lowest-bits</a></span> _n: (addr int), bits: int <span class="Delimiter">{</span> <span id="L48" class="LineNr">48 </span> <span class="PreProc">var</span> dest/<span class="muRegEdi">edi</span>: (addr int) <span class="Special"><-</span> copy _n -<span id="L49" class="LineNr">49 </span> <span class="PreProc">var</span> n/<span class="muRegEax">eax</span>: int <span class="Special"><-</span> copy *dest +<span id="L49" class="LineNr">49 </span> <span class="PreProc">var</span> n/eax: int <span class="Special"><-</span> copy *dest <span id="L50" class="LineNr">50 </span> n <span class="Special"><-</span> <a href='506math.mu.html#L35'>shift-right-by</a> n, bits <span id="L51" class="LineNr">51 </span> n <span class="Special"><-</span> <a href='506math.mu.html#L23'>shift-left-by</a> n, bits <span id="L52" class="LineNr">52 </span> copy-to *dest, n |