This commit is contained in:
Kartik Agaram 2020-03-25 09:46:35 -07:00
parent 8fa7c79685
commit 84c426d2ab
2 changed files with 2 additions and 2 deletions

View File

@ -27,7 +27,7 @@ body { font-family: monospace; color: #000000; background-color: #c6c6c6; }
Mu is a statement-oriented language. Blocks consist of flat lists of instructions.
The following chart shows all the instruction forms supported by Mu, along
with the instruction they're translated to. Variables of the form <span class="Constant">&quot;var/reg&quot;</span>
with the instruction they're translated to. Variables of the form 'var/reg'
live in a register, and other variables are assumed to live on the stack at
some 'stack-offset' from ebp.

View File

@ -2,7 +2,7 @@
Mu is a statement-oriented language. Blocks consist of flat lists of instructions.
The following chart shows all the instruction forms supported by Mu, along
with the instruction they're translated to. Variables of the form "var/reg"
with the instruction they're translated to. Variables of the form 'var/reg'
live in a register, and other variables are assumed to live on the stack at
some 'stack-offset' from ebp.