about summary refs log tree commit diff stats
path: root/x.mu
Commit message (Expand)AuthorAgeFilesLines
* 3380Kartik K. Agaram2016-09-171-3/+3
* 2735 - define recipes using 'def'Kartik K. Agaram2016-03-081-1/+1
* 1868 - start using naked literals everywhereKartik K. Agaram2015-07-281-2/+2
* 1363 - rename 'integer' to 'number'Kartik K. Agaram2015-05-131-3/+3
* 1345Kartik K. Agaram2015-05-111-3/+6
* 1276 - make C++ version the defaultKartik K. Agaram2015-05-051-6/+5
* 717Kartik K. Agaram2015-02-081-0/+1
* 428 - cleanup odds and endsKartik K. Agaram2014-12-141-3/+3
* 403 - 'function' is more clear than 'def'Kartik K. Agaram2014-12-121-1/+1
* 314 - better syntax for functionsKartik K. Agaram2014-11-241-2/+2
* 212 - initial flowKartik K. Agaram2014-11-011-0/+5
* 145 - delete random programsKartik K. Agaram2014-10-141-6/+0
* 91 - just implement ops natively to maintain momentumKartik K. Agaram2014-08-311-0/+1
* 49 - make Readme less ambiguousKartik K. Agaram2014-08-181-3/+3
* 42 - update ReadmeKartik K. Agaram2014-07-311-3/+3
* 2 - compound functionsKartik K. Agaram2014-07-061-1/+0
* 1Kartik K. Agaram2014-07-061-4/+6
* 0Kartik K. Agaram2014-07-061-0/+4
ction */ .highlight .nl { color: #336699; font-style: italic } /* Name.Label */ .highlight .nn { color: #bb0066; font-weight: bold } /* Name.Namespace */ .highlight .py { color: #336699; font-weight: bold } /* Name.Property */ .highlight .nt { color: #bb0066; font-weight: bold } /* Name.Tag */ .highlight .nv { color: #336699 } /* Name.Variable */ .highlight .ow { color: #008800 } /* Operator.Word */ .highlight .w { color: #bbbbbb } /* Text.Whitespace */ .highlight .mb { color: #0000DD; font-weight: bold } /* Literal.Number.Bin */ .highlight .mf { color: #0000DD; font-weight: bold } /* Literal.Number.Float */ .highlight .mh { color: #0000DD; font-weight: bold } /* Literal.Number.Hex */ .highlight .mi { color: #0000DD; font-weight: bold } /* Literal.Number.Integer */ .highlight .mo { color: #0000DD; font-weight: bold } /* Literal.Number.Oct */ .highlight .sa { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Affix */ .highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */ .highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */ .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>Mu - 085register-names.subx</title>
<meta name="Generator" content="Vim/8.1">
<meta name="plugin-version" content="vim8.1_v1">
<meta name="syntax" content="none">
<meta name="settings" content="number_lines,use_css,pre_wrap,no_foldcolumn,expand_tabs,line_ids,prevent_copy=">
<meta name="colorscheme" content="minimal-light">
<style type="text/css">
<!--
pre { white-space: pre-wrap; font-family: monospace; color: #000000; background-color: #c6c6c6; }
body { font-size:12pt; font-family: monospace; color: #000000; background-color: #c6c6c6; }
a { color:inherit; }
* { font-size:12pt; font-size: 1em; }
.subxComment { color: #005faf; }
.LineNr { }
.SpecialChar { color: #d70000; }
.Constant { color: #008787; }
-->
</style>

<script type='text/javascript'>
<!--

/* function to open any folds containing a jumped-to line before jumping to it */
function JumpToLine()
{
  var lineNum;
  lineNum = window.location.hash;
  lineNum = lineNum.substr(1); /* strip off '#' */

  if (lineNum.indexOf('L') == -1) {
    lineNum = 'L'+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.
   */
  if (lineElem) {
    lineElem.scrollIntoView(true);
  }
  return true;
}
if ('onhashchange' in window) {
  window.onhashchange = JumpToLine;
}

-->
</script>
</head>
<body onload='JumpToLine();'>
<a href='https://github.com/akkartik/mu/blob/master/085register-names.subx'>https://github.com/akkartik/mu/blob/master/085register-names.subx</a>
<pre id='vimCodeElement'>
<span id="L1" class="LineNr"> 1 </span>== data
<span id="L2" class="LineNr"> 2 </span><span class="SpecialChar">Registers</span>:  <span class="subxComment"># (table string int)</span>
<span id="L3" class="LineNr"> 3 </span>  <span class="subxComment"># a table is a stream</span>
<span id="L4" class="LineNr"> 4 </span>  0x40/imm32/write
<span id="L5" class="LineNr"> 5 </span>  0/imm32/read
<span id="L6" class="LineNr"> 6 </span>  0x40/imm32/length
<span id="L7" class="LineNr"> 7 </span>  <span class="subxComment"># data</span>
<span id="L8" class="LineNr"> 8 </span>  <span class="Constant">&quot;eax&quot;</span>/imm32  0/imm32
<span id="L9" class="LineNr"> 9 </span>  <span class="Constant">&quot;ecx&quot;</span>/imm32  1/imm32
<span id="L10" class="LineNr">10 </span>  <span class="Constant">&quot;edx&quot;</span>/imm32  2/imm32
<span id="L11" class="LineNr">11 </span>  <span class="Constant">&quot;ebx&quot;</span>/imm32  3/imm32
<span id="L12" class="LineNr">12 </span>  <span class="Constant">&quot;esp&quot;</span>/imm32  4/imm32
<span id="L13" class="LineNr">13 </span>  <span class="Constant">&quot;ebp&quot;</span>/imm32  5/imm32
<span id="L14" class="LineNr">14 </span>  <span class="Constant">&quot;esi&quot;</span>/imm32  6/imm32
<span id="L15" class="LineNr">15 </span>  <span class="Constant">&quot;edi&quot;</span>/imm32  7/imm32
</pre>
</body>
</html>
<!-- vim: set foldmethod=manual : -->