This commit is contained in:
Kartik Agaram 2020-08-01 16:28:32 -07:00
parent af983921f6
commit 59a2e363f5
2 changed files with 2 additions and 2 deletions

View File

@ -25,7 +25,7 @@ body { font-family: monospace; color: #000000; background-color: #c6c6c6; }
<pre id='vimCodeElement'>
<span class="SalientComment">## Mu's instructions and their table-driven translation</span>
See <a href="http://akkartik.name/akkartik-convivial-20200315.pdf">http://akkartik.name/akkartik-convivial-20200315.pdf</a> for the complete
See <a href="http://akkartik.name/akkartik-convivial-20200607.pdf">http://akkartik.name/akkartik-convivial-20200607.pdf</a> for the complete
story. In brief: Mu is a statement-oriented language. Blocks consist of flat
lists of instructions. Instructions can have inputs after the operation, and
outputs to the left of a '<span class="SpecialChar">&lt;-</span>'. Inputs and outputs must be variables. They can't

View File

@ -1,6 +1,6 @@
## Mu's instructions and their table-driven translation
See http://akkartik.name/akkartik-convivial-20200315.pdf for the complete
See http://akkartik.name/akkartik-convivial-20200607.pdf for the complete
story. In brief: Mu is a statement-oriented language. Blocks consist of flat
lists of instructions. Instructions can have inputs after the operation, and
outputs to the left of a '<-'. Inputs and outputs must be variables. They can't