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/linux/409print-float-hex.mu.html | |
parent | dc5a0acf3feea227d03a98cedf427d2aef462320 (diff) | |
download | mu-372367f59a897162912d0646158bdea1e07d6e66.tar.gz |
html: better highlighting for int registers
Diffstat (limited to 'html/linux/409print-float-hex.mu.html')
-rw-r--r-- | html/linux/409print-float-hex.mu.html | 21 |
1 files changed, 10 insertions, 11 deletions
diff --git a/html/linux/409print-float-hex.mu.html b/html/linux/409print-float-hex.mu.html index ef803f8c..48eb4339 100644 --- a/html/linux/409print-float-hex.mu.html +++ b/html/linux/409print-float-hex.mu.html @@ -14,20 +14,19 @@ 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; } +.PreProc { color: #c000c0; } +.muRegEdx { color: #af5f00; } .LineNr { } -.Delimiter { color: #c000c0; } -.CommentedCode { color: #8a8a8a; } -.muRegEsi { color: #87d787; } .Constant { color: #008787; } -.Special { color: #ff6060; } -.PreProc { color: #c000c0; } +.CommentedCode { color: #8a8a8a; } +.muRegEbx { color: #5f00ff; } +.muRegEsi { color: #005faf; } .muFunction { color: #af5f00; text-decoration: underline; } +.muRegEcx { color: #870000; } +.Delimiter { color: #c000c0; } +.Special { color: #ff6060; } .muTest { color: #5f8700; } .muComment { color: #005faf; } -.muRegEax { color: #875f00; } -.muRegEcx { color: #af875f; } -.muRegEdx { color: #878700; } -.muRegEbx { color: #8787af; } --> </style> @@ -182,7 +181,7 @@ if ('onhashchange' in window) { <span id="L117" class="LineNr">117 </span> <span id="L118" class="LineNr">118 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='409print-float-hex.mu.html#L118'>print-float-hex</a></span> <a href='405screen.mu.html#L9'>screen</a>: (addr <a href='405screen.mu.html#L9'>screen</a>), n: float <span class="Delimiter">{</span> <span id="L119" class="LineNr">119 </span> <span class="muComment"># - special names</span> -<span id="L120" class="LineNr">120 </span> <span class="PreProc">var</span> bits/<span class="muRegEax">eax</span>: int <span class="Special"><-</span> reinterpret n +<span id="L120" class="LineNr">120 </span> <span class="PreProc">var</span> bits/eax: int <span class="Special"><-</span> reinterpret n <span id="L121" class="LineNr">121 </span> compare bits, <span class="Constant">0</span> <span id="L122" class="LineNr">122 </span> <span class="Delimiter">{</span> <span id="L123" class="LineNr">123 </span> <span class="PreProc">break-if-!=</span> @@ -248,7 +247,7 @@ if ('onhashchange' in window) { <span id="L183" class="LineNr">183 </span> <span class="PreProc">break-if->=</span> <span id="L184" class="LineNr">184 </span> <a href='405screen.mu.html#L169'>print-string</a> <a href='405screen.mu.html#L9'>screen</a>, <span class="Constant">"-"</span> <span id="L185" class="LineNr">185 </span> <span class="Delimiter">}</span> -<span id="L186" class="LineNr">186 </span> <span class="PreProc">var</span> exp-magnitude/<span class="muRegEax">eax</span>: int <span class="Special"><-</span> <a href='406int32.mu.html#L31'>abs</a> exponent +<span id="L186" class="LineNr">186 </span> <span class="PreProc">var</span> exp-magnitude/eax: int <span class="Special"><-</span> <a href='406int32.mu.html#L31'>abs</a> exponent <span id="L187" class="LineNr">187 </span> <a href='405screen.mu.html#L462'>print-int32-hex-bits</a> <a href='405screen.mu.html#L9'>screen</a>, exp-magnitude, <span class="Constant">8</span> <span id="L188" class="LineNr">188 </span><span class="Delimiter">}</span> <span id="L189" class="LineNr">189 </span> |