about summary refs log tree commit diff stats
path: root/html/subx/030---operands.cc.html
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2019-07-14 09:42:36 -0700
committerKartik Agaram <vc@akkartik.com>2019-07-14 09:42:36 -0700
commitce2c1efc41470764126e9a1a7f4e0cfec4213587 (patch)
tree84a2fb9475ad6326571a628bfc36e9cf1d757e7f /html/subx/030---operands.cc.html
parentc4412d299ee983da5bfca64f33cf6f3eb478d232 (diff)
downloadmu-ce2c1efc41470764126e9a1a7f4e0cfec4213587.tar.gz
.
Diffstat (limited to 'html/subx/030---operands.cc.html')
-rw-r--r--html/subx/030---operands.cc.html14
1 files changed, 7 insertions, 7 deletions
diff --git a/html/subx/030---operands.cc.html b/html/subx/030---operands.cc.html
index c1e951a2..8aa1af86 100644
--- a/html/subx/030---operands.cc.html
+++ b/html/subx/030---operands.cc.html
@@ -3,8 +3,8 @@
 <head>
 <meta http-equiv="content-type" content="text/html; charset=UTF-8">
 <title>Mu - subx/030---operands.cc</title>
-<meta name="Generator" content="Vim/8.0">
-<meta name="plugin-version" content="vim7.4_v2">
+<meta name="Generator" content="Vim/8.1">
+<meta name="plugin-version" content="vim8.1_v1">
 <meta name="syntax" content="cpp">
 <meta name="settings" content="number_lines,use_css,pre_wrap,no_foldcolumn,expand_tabs,line_ids,prevent_copy=">
 <meta name="colorscheme" content="minimal-light">
@@ -15,12 +15,12 @@ body { font-size:12pt; font-family: monospace; color: #000000; background-color:
 a { color:inherit; }
 * { font-size:12pt; font-size: 1em; }
 .LineNr { }
-.Constant { color: #008787; }
+.Normal { color: #000000; background-color: #c6c6c6; padding-bottom: 1px; }
+.Comment { color: #005faf; }
 .Delimiter { color: #c000c0; }
 .Special { color: #d70000; }
 .Identifier { color: #af5f00; }
-.Normal { color: #000000; background-color: #c6c6c6; padding-bottom: 1px; }
-.Comment { color: #005faf; }
+.Constant { color: #008787; }
 .SalientComment { color: #0000af; }
 -->
 </style>
@@ -38,7 +38,7 @@ function JumpToLine()
   if (lineNum.indexOf('L') == -1) {
     lineNum = 'L'+lineNum;
   }
-  lineElem = document.getElementById(lineNum);
+  var lineElem = document.getElementById(lineNum);
   /* Always jump to new location even if the line was hidden inside a fold, or
    * we corrected the raw number to a line ID.
    */
@@ -352,7 +352,7 @@ if ('onhashchange' in window) {
 <span id="L293" class="LineNr">293 </span>string <a href='030---operands.cc.html#L293'>hex_byte_to_string</a><span class="Delimiter">(</span><span class="Normal">uint8_t</span> val<span class="Delimiter">)</span> <span class="Delimiter">{</span>
 <span id="L294" class="LineNr">294 </span>  ostringstream out<span class="Delimiter">;</span>
 <span id="L295" class="LineNr">295 </span>  <span class="Comment">// uint8_t prints without padding, but int8_t will expand to 32 bits again</span>
-<span id="L296" class="LineNr">296 </span>  out &lt;&lt; <a href='010---vm.cc.html#L412'>HEXBYTE</a> &lt;&lt; <a href='010---vm.cc.html#L415'>NUM</a><span class="Delimiter">(</span>val<span class="Delimiter">);</span>
+<span id="L296" class="LineNr">296 </span>  out &lt;&lt; <a href='010---vm.cc.html#L407'>HEXBYTE</a> &lt;&lt; <a href='010---vm.cc.html#L410'>NUM</a><span class="Delimiter">(</span>val<span class="Delimiter">);</span>
 <span id="L297" class="LineNr">297 </span>  <span class="Identifier">return</span> out<span class="Delimiter">.</span>str<span class="Delimiter">();</span>
 <span id="L298" class="LineNr">298 </span><span class="Delimiter">}</span>
 <span id="L299" class="LineNr">299 </span>
a id='n278' href='#n278'>278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388