diff options
-rw-r--r-- | html/mu_instructions.html | 2 | ||||
-rw-r--r-- | mu_instructions | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/html/mu_instructions.html b/html/mu_instructions.html index fef2054e..1c50a228 100644 --- a/html/mu_instructions.html +++ b/html/mu_instructions.html @@ -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">"var/reg"</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. diff --git a/mu_instructions b/mu_instructions index 6a450ec0..f6b05faa 100644 --- a/mu_instructions +++ b/mu_instructions @@ -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. |